python Jupyter笔记本 - 常见的东西我最终总是复制粘贴

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Jupyter笔记本 - 常见的东西我最终总是复制粘贴相关的知识,希望对你有一定的参考价值。

# autoreload linked files 
%load_ext autoreload
%autoreload 2

# the viz stuff
%matplotlib inline
import matplotlib.pyplot as plt	# mpl is the base of all python plotting angst
import seaborn as sns			# put some trainer wheels & lipstick on mpl
from IPython import display		# to display pics and other stuff which markdown doesn't

# cause data
import pandas as pd				# dataframes!
import numpy as np				# crunch them numbers

# talk to the web
import requests					# easy way to get stuff from the internet

以上是关于python Jupyter笔记本 - 常见的东西我最终总是复制粘贴的主要内容,如果未能解决你的问题,请参考以下文章