python-for-data-and-media-communication-gitbook icon indicating copy to clipboard operation
python-for-data-and-media-communication-gitbook copied to clipboard

Partial Feedback for Chapter 09

Open ConnorLi96 opened this issue 6 years ago • 4 comments

@ChicoXYC

Sorry for late, I didn't finish all the content due to several final projects recently. But there are some partial feedback may can help us to improve it better, and if there are any new findings I will add it below this issue. By the way, this chapter is very practical and easy to receive, good job!

  • Chinese characters will overlap like below screenshot. I've try modify the figsize or download the picture and enlarge it in Google Drive, but it's invalid. screenshot 2018-11-15 at 23 33 31

  • This line fig, axes = plt.subplots(nrows=2, ncols=2,constrained_layout=True,figsize=(30,20)) isn‘t a common way of assigning, I'm not sure the fig, it's seem to correspond with the figsize, can you explain more?

  • There is an interesting issue, you find $200-400 is the most popular price and acceptable range in Hong Kong in Plot Charts. However, after I changed the element "price" to "bookmark", the result is below picture. Obviously, the $400-800 is most popular when calculate the bookmark. Maybe we can talk it tomorrow. download

ConnorLi96 avatar Nov 15 '18 16:11 ConnorLi96

For 1st and 2nd point, please try to find answers at your pages and put this content into FAQ. I believe such questions will be recurrent frequently during the final period. A hint to solve the xticks cluttering problem: rotate the xticks by chaning the styles.

hupili avatar Nov 16 '18 14:11 hupili

For 3rd point, it it nice observation. We can have a mini-hackathon on open rice data with people interested in this topic.

hupili avatar Nov 16 '18 14:11 hupili

Q1: @ConnorLi96 adjust the fig size will help, like you can see the changes in the following:

fig = plt.figure(figsize=(15,7))

image

fig = plt.figure(figsize=(7,7))

image

if not, please leave your codes here, and I will test more.

ChicoXYC avatar Jan 07 '19 10:01 ChicoXYC

Merged into FAQs:https://github.com/hupili/python-for-data-and-media-communication-gitbook/blob/master/module-matplotlib.md#characters-overlapping-in-text-marker

ChicoXYC avatar Jan 15 '19 05:01 ChicoXYC