Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
ploting dot
#4
Look at countourf function from the matplotlib package.

In general, pseudocode for your task would be the following:

from matplotlib import pyplot as plt
import numpy as np

list_of_lists = np.array(list_of_lists) # probably you will need to convert your data to numpy 2d array

X, Y = np.meshgrid([tau1, ... , tauN], [x1, ... , xM]) # pseudocode!
# probably you would use X, Y = np.meshgrid(np.linspace(tau1, tauN, 100), np.linspace(x1, xM, 100)) instead
plt.countourf(X, Y, list_of_lists)
plt.show()
Note: this is pseudocode only, you need to adopt it for your needs.
Reply


Messages In This Thread
ploting dot - by lioko - Apr-16-2019, 10:44 PM
RE: ploting dot - by Larz60+ - Apr-17-2019, 01:06 AM
RE: ploting dot - by Skaperen - Apr-17-2019, 03:54 AM
RE: ploting dot - by scidam - Apr-17-2019, 08:21 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Ploting single column with multiple category drunkenneo 1 2,030 May-26-2021, 04:51 PM
Last Post: jefsummers
  Ploting polar chart with circumference as Zero ibaad1406 0 1,294 Feb-10-2020, 05:53 PM
Last Post: ibaad1406

Forum Jump:

User Panel Messages

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