-
-
Notifications
You must be signed in to change notification settings - Fork 783
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Episode 03 - Visualizing Tabular Data : Suggestions #835
Comments
Hi @xintin ,
This is something that has come up multiple times. For the time being we are not making this change. Please see issue #830 for reasoning.
Yes, I think it would be helpful to briefly indicate what
I think the time it would take to add more examples of different types of visualizations to the main episode body is prohibitive. I think seeing more of these visualization types would be of interest to learners though, so I think including some of them through exercise(s) that use the inflammation data would be worthwhile. That would help facilitate instructors bringing in more examples when they want to focus on the visualization but skip over them when there is greater need to move to other concepts in the lesson. If you would like to submit such examples, please create one PR per exercise you would like to see included.
We do not tend to be that specific in the episode titles. I think the idea here may be to focus on the objective of visualizing data, not the specific libraries we will use to get the job done. We do mention
I think people would find this useful. It could be added to the existing code under the Grouping plots heading to add titles to each of the three plots. If you would like, please open a PR specifically for adding titles to the plots. |
Hi @ldko, |
Hi, while going through Episode3, Visualizing Tabular Data, I came across a few things that I feel can be improved/added.
It is a globally accepted convention to use an alias for mathplot.pyplot as plt. Can we replace
import matplotlib.pyplot
withimport matplotlib.pyplot as plt
Ref: http://google.github.io/styleguide/pyguide.html#22-imports
In the introduction, we are saying that,
Can we explain the usage of imshow and show()? Reason being nowhere else in the lesson we are using imshow(). And it leaves me without a clear explanation of why do I need imshow(data) along with show().
matplotlib is used to plot bar charts, pie charts, histograms, scatter plots, etc. Shall we make the tutorial more varied with examples apart from line charts alone? We can also include this as an exercise.
In this episode, we are only using matplotlib. Shall we rename the episode as "Visualizing Tabular Data using Matplotlib"? Because we do have seaborn, plotly, and ggplot like packages gaining popularity too.
How about adding a small snippet using set_title() to distinguish sub-plots?
Kindly share your thoughts on the above points.
Thank you.
The text was updated successfully, but these errors were encountered: