profile image
Thanks for the contributions! What framework did you create the diagrams, tables etc. in? I'm also currently learning Python
profile image
@Simon_n matplotlib. Usually with matplotlib.pyplot. This is relatively easy, usually you just have to enter your data and that's it. In my case, the data was mostly in pandas dataframes or numpy arrays. The latter are extremely efficient and faster than C if you use the right operations. Pandas, numpy and matplotlib have pretty good support for each other. So you can easily draw a pandas dataframe with .plot()
profile image
@SemiGrowth all right, I'll take a look at everything, thanks 👍