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

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.

主站蜘蛛池模板: 海宁市| 土默特左旗| 错那县| 嘉善县| 温泉县| 达孜县| 平远县| 昌乐县| 牟定县| 宣城市| 政和县| 安图县| 宁河县| 武宣县| 商丘市| 特克斯县| 山东省| 沙河市| 上虞市| 龙海市| 福安市| 揭西县| 广宁县| 华宁县| 宁陕县| 萨迦县| 南陵县| 鱼台县| 酒泉市| 桑日县| 张家界市| 麻栗坡县| 永德县| 蓬莱市| 赤壁市| 合肥市| 陈巴尔虎旗| 鄂尔多斯市| 通州市| 广灵县| 弋阳县|