Part 3 - Visualization - viewing your data in a graphical form
Libraries
The following libraries are used in the script:
awswrangler - queries date from Amazon Timestream database.
matplotlib - used for plotting data.
pandas - provides powerful data structures and data analysis tools to deal with datasets (included with awswrangler).
Setup Constants
Get Data
Uses awswrangler to query data and put into a Pandas DataFrame.
Clean Data
Steps to clean the data before it is plotted.
Plot Data
Plot the cleaned data using matplotlib.
Usage
Displays the raw data from the Timestream database.
Displays the cleaned data ready for plotting.
Final plot displaying tha data.
Summary
This post describes now to visualize the Temperature and Relative Humidity readings from the sensor attached to the Raspberry Pi from the data logged to the Amazon Timestream database.
We are already using AI models whether we are conscious of it or not. Models are increasingly being embedded in all sorts of applications including those making high impact decisions. Trusting these models will be a key to their adoption.
This is a brief overview of the most common image-processing tasks that can be performed using the PyTorch Torchvision package. Including classification, localisation, object detection, instance segmentation and semantic segmentation.
This is the second in a series of posts to build a simple data logger system for temperature and relative humidity. Part 2 will send data to an Amazon Timestream database.