salleynealt / codecademy-dvp-2

Data Visualization with Python
0 stars 0 forks source link

Netflix Visualizations - Beautiful formatting with this function #3

Open jmcrey opened 6 years ago

jmcrey commented 6 years ago
ax = sns.violinplot( x = "Quarter",
                     y = "Price",
                     data = netflix_stocks_quarterly)

I love the way you separated your parameter assignments and lined them up with one another! Made it super easy to read. Nice job!