官术网_书友最值得收藏!

Import the external libraries and set up the plotting environment

  1. Open up the chapter 1 Jupyter Notebook and scroll to the Python Libraries section.

Just like for regular Python scripts, libraries can be imported into the Notebook at any time. It's best practice to put the majority of the packages you use at the top of the file. Sometimes it makes sense to load things midway through the Notebook and that is completely OK.

  1. Run the cells to import the external libraries and set the plotting options:

For a nice Notebook setup, it's often useful to set various options along with the imports at the top. For example, the following can be run to change the figure's appearance to something more aesthetically pleasing than the matplotlib and Seaborn defaults: 

    import matplotlib.pyplot as plt
%matplotlib inline
import seaborn as sns

# See here for more options:
https://matplotlib.org/users/customizing.html
%config InlineBackend.figure_format='retina'
sns.set() # Revert to matplotlib defaults
plt.rcParams['figure.figsize'] = (9, 6)
plt.rcParams['axes.labelpad'] = 10
sns.set_style("darkgrid")

So far in this book, we've gone over the basics of using Jupyter Notebooks for data science. We started by exploring the platform and finding our way around the interface. Then, we discussed the most useful features, which include tab completion and magic functions. Finally, we introduced the Python libraries we'll be using in this book.

The next section will be very interactive as we perform our first analysis together using the Jupyter Notebook.

主站蜘蛛池模板: 土默特右旗| 台安县| 柏乡县| 五台县| 临高县| 赤峰市| 湖口县| 北流市| 关岭| 集安市| 平潭县| 招远市| 高安市| 安化县| 榆树市| 平定县| 元江| 陆良县| 怀化市| 常德市| 夹江县| 湘潭市| 利津县| 龙江县| 阿拉善盟| 黄山市| 彭阳县| 宁都县| 达拉特旗| 当涂县| 科技| 岳阳市| 肥乡县| 潼南县| 石河子市| 开阳县| 太谷县| 乐清市| 西安市| 运城市| 崇明县|