datacamp-data-analyst-with-python icon indicating copy to clipboard operation
datacamp-data-analyst-with-python copied to clipboard

data analyst with python career track

Results 1 datacamp-data-analyst-with-python issues
Sort by recently updated
recently updated
newest added

# The Correct code for this exercise is # Histogram of conventional avg_price avocados[avocados["type"] == "conventional"]["avg_price"].hist() # Histogram of organic avg_price avocados[avocados["type"] == "organic"]["avg_price"].hist() # Add a legend plt.legend(["conventional", "organic"])...