Für i folgende Einfuhren mindestens 99% meiner jupyter/ipython Notebooks verwenden:Automatisieren Standard jupyter/ipython Notebook Importe
import pandas as pd
from pandas.io.json import json_normalize
import matplotlib.pyplot as plt
import matplotlib as mpl
import numpy as np
from bson import json_util, ObjectId
import json
from datetime import datetime, timedelta
import pytz
pd.set_option('max_columns', 50)
mpl.style.use('ggplot')
%pylab inline
Hat jemand irgendeine Art von Lösung gefunden, die mir dies automatisch zu tun erlauben würde, oder eine Art Makro erstellen?
Der Stand der Dokumentation wurde am 21. April 2016 nach [link] (http://ipython.readthedocs.org/en/stable/interactive/tutorial.html?highlight=startup) verschoben, aber CT Zhu's ausgezeichnete Antwort noch steht. – PaulDong