Mastering Python for Data Science by 2015

Mastering Python for Data Science by 2015

Author:2015
Language: eng
Format: epub, mobi
Publisher: Packt Publishing


Here is the output of the preceding code:

In the preceding scatter plot, we can see that there is no clear pattern between the average points scored and the height. The distribution looks quite random.

Let's look at the distribution between average points scored and the weight:

>>> fig, ax = plt.subplots(1, 1) >>> ax.scatter(b_data.weight, b_data.avg_points_scored) >>> ax.set_xlabel('weight') >>> ax.set_ylabel('Average points scored per game') >>> plt.show()

Here is the output of the preceding code:



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.