BiAPoL / blog

Most of us study and work at the Bio-image Analysis Technology Development group at the DFG Cluster of Excellence “Physics of Life” at the TU Dresden. We blog about image data science, knowledge exchange and research data management in the life sciences.
https://biapol.github.io/blog/
Creative Commons Attribution 4.0 International
9 stars 8 forks source link

Write tutorial on plotting in Python #35

Open jo-mueller opened 2 years ago

jo-mueller commented 2 years ago

Following up from this issue, I think it would be nice to have a tutorial on plotting things in Python. It could be interesting because I think that graphics-generation is one of the reason that make users go back to commercial software (prism, excel (👎 ), or origin).

The tutorial would include a few "typical" datasets (csv files), show how to read such data with, for example, pandas and show a few visualizations with one or all of the following libraries:

zoccoler commented 2 years ago

Hi Johannes, I like this topic! If you plan on showing that in jupyter notebooks, take a look at bqplot as well. Pandas has some commands for plotting too (https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.plot.html), but it is usually just matplotlib simplified. I don't like it, but some people use it for simple plots. Also let me know if you need any help. I personally have only used matplotlib, seaborn and bqplot so far.