Python Forum
How to plot data from live datasource?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to plot data from live datasource?
#1
Hi,

Ive managed to get live data from the web in code below.
Now i try to make a graph from that data.
Im getting data in numbers and when i run the script an empty graph is showing.
I dont know what im doing wrong Cry

Thanks.


import matplotlib
import matplotlib.pyplot as plt
import requests
import json
import time
import numpy as np



url = 'https://api.darksky.net/forecast/19322f67baef0exxxxxx/xxx.483143,xxxx.622984'
response = requests.get(url)
data = response.json()
fields = ['time', 'temperature', 'pressure', 'humidity', 'precipProbability']
transformed = [
    {
        field: rec.get(field)
        for field
        in fields
    }
    for rec
    in data['hourly']['data']
]

plt.plot('temperature')
plt.show()
print(json.dumps(transformed, indent=4))
Reply


Messages In This Thread
How to plot data from live datasource? - by Makada - Jan-20-2020, 08:38 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Likert survey data plot error Andrzej_Andrzej 6 1,463 Jul-16-2023, 10:11 PM
Last Post: deanhystad
  Plot a pandas data fram via pyqtgraph with an modul import and qt designer widget Nietzsche 0 862 May-29-2023, 02:42 PM
Last Post: Nietzsche
  Create simple live plot of stock data dram 2 2,947 Jan-27-2023, 04:34 AM
Last Post: CucumberNox
Thumbs Up Python 3 Jupyter notebook ternary plot data nicholas 0 963 Jan-21-2023, 05:01 PM
Last Post: nicholas
  Plot data from CSV allen04 2 2,414 Jan-03-2021, 10:30 AM
Last Post: Axel_Erfurt
  How to plot intraday data of several days in one plot mistermister 3 2,941 Dec-15-2020, 07:43 PM
Last Post: deanhystad
  Overwrite previous live data. Makada 2 2,392 Nov-07-2020, 07:40 PM
Last Post: Makada
  Creating Complex Color Spectrum Plot From Data JoeDainton123 2 2,148 Sep-15-2020, 08:09 AM
Last Post: DPaul
  Bode plot from time series experiment data discus 4 7,409 Jun-20-2020, 07:46 AM
Last Post: discus
  Python animate live plotting fetching data from Mysql Table dhirajm 6 3,704 Apr-24-2020, 05:07 PM
Last Post: dhirajm

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020