write2sushma / Capstone-14

Capstone project by Team 14 for "Python Bootcamp Data Analysis for Beginners" assignment.
0 stars 1 forks source link

Mentor feedback #2

Open marielledado opened 4 years ago

marielledado commented 4 years ago

Hello Team 14,

congratulations on finishing the bootcamp and your capstone!

I really appreciate that you tried out a lot of Python and pandas tricks in your project, such as list comprehension, function definition and matplotlib subplots. I also liked that you used text cells to explain your code so that it's easy for me as a reader to follow.

I have a question: what does your function highlight_max() do? The output only shows a plain table.

Here are some things I would improve:

fig, ax = plt.subplots(figsize=(10,5))
df_2019.plot(x="Country", y=["GDP per capita", "Healthy life expectancy", "Generosity"], kind="bar", ax=ax)

Cheers, Marielle

marielledado commented 4 years ago

P.S. I just had a look at what highlight_max() in the pandas docs, guess the effect simply doesn't appear in notebooks pushed to GitHub!

write2sushma commented 4 years ago

Hi Marielle, Thanks a lot for your feedback.