- Applied Deep Learning with Python
- Alex Galea Luis Capelo
- 238字
- 2021-08-13 15:53:06
Import the external libraries and set up the plotting environment
- 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.
- 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.
- Mastering AWS Lambda
- Flink SQL與DataStream入門、進階與實戰
- Java Web應用開發技術與案例教程(第2版)
- Visual C++應用開發
- ArcGIS By Example
- Learning Python Design Patterns
- 深入淺出Serverless:技術原理與應用實踐
- Mastering Android Development with Kotlin
- Unity 2018 Augmented Reality Projects
- Troubleshooting Citrix XenApp?
- Java并發編程之美
- Moodle 3 Administration(Third Edition)
- 深度學習入門:基于Python的理論與實現
- 分布式數據庫HBase案例教程
- HTML5+CSS3+jQuery Mobile+Bootstrap開發APP從入門到精通(視頻教學版)