Python Forum
Show graphs in matplotlib from a sql query?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Show graphs in matplotlib from a sql query?
#1
Greetings,
I am in the absolute beginning of my programming journey trying to understand things and doing it the right way.
Now I somehow managed to fetch some data from a sqlite database like this -

result = c.execute('SELECT shortVolume, longVolume,DateTime FROM currencies WHERE name="XAUUSD" ORDER BY DateTime ASC')
all_rows = c.fetchall()
The query is stored in a list with nested tuples right? And the output of all_rows looks something like this -
Output:
[(2865.7, 4262.09, 1580910343.93018), (2864.88, 4261.76, 1580910643.59432), (2865.57, 4266.89, 1580910943.592479)]
Now from here I am little puzzled what I need to do next to prepare the plotting in matplotlib. Have read some tutorials but many of them use numpy, do I need it and will it help me out in this matter?

What I am looking for is one plot with two lines, one line for shortVolume and the other for longVolume but plotted on same chart.

I am stuck and need some guidance how to move on. Any kind help is appreciated.
Reply
#2
Please delete this thread...
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  PIL Image im.show() no show! Pedroski55 2 959 Sep-12-2022, 10:19 PM
Last Post: Pedroski55
  Plot several graphs on the same row Menthix 1 1,030 Mar-18-2022, 05:47 PM
Last Post: deanhystad
  grouped bar graphs tobiasfw 1 1,401 Feb-22-2022, 02:25 PM
Last Post: deanhystad
  PIL Image im.show() no show! Pedroski55 6 4,881 Feb-08-2022, 06:32 AM
Last Post: Pedroski55
  Matplotlib: How do I convert Dates from Excel to use in Matplotlib JaneTan 1 3,220 Mar-11-2021, 10:52 AM
Last Post: buran
  Python Matplotlib: How do I save (in pdf) all the graphs I create in a loop? JaneTan 1 8,859 Feb-28-2021, 06:20 PM
Last Post: Larz60+
  matplotlib.pyplot.show Alienspecimen 2 2,232 Feb-27-2021, 02:32 AM
Last Post: snippsat
  Help with a query - to show possible formulas Yanos 1 1,764 Nov-02-2020, 12:18 AM
Last Post: jefsummers
  How to merge strings through graphs Den 6 3,423 Jun-29-2020, 07:07 AM
Last Post: Den
  How to clear matplotlib graphs from memory mrashy 0 4,552 Apr-01-2020, 04:03 AM
Last Post: mrashy

Forum Jump:

User Panel Messages

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