Statistics in Python using the statistics module

In this post, we'll look at a couple of statistics functions in Python. These statistics functions are part of the Python Standard Library in the statistics module. The four functions we'll use in this post are common in statistics:

  • mean - average value
  • median - middle value
  • mode - most often value
  • standard …
more ...



Building an IoT Server with flask and Python - Part 6 - upload code to ESP8266-based WiFi weather stations

Date Series Part 6 of Building an IoT Server with Flask and Python Tags python / flask / IoT / sensor

ESP8266 with sensor

This is the sixth part of a series of posts about building an Internet of Things (IoT) server with flask, Python and ESP8266 microcontrollers. In this post, we'll add some code to our ESP8266-based weather stations. The code we upload to the ESP8266 microcontrollers programs the WiFi weather stations to …

more ...