Execute envirment OSX 10.11.4
ref from http://jupyter.readthedocs.io/en/latest/install.html
Install conda and jupyter, and others.
$conda install jupyter, matplotlib, pandas, seaborn
Excute on project root.
$jupyter notebook
Add the following to the notebook.
%matplotlib inline
import matplotlib.pyplot as plt
import seaborn; seaborn.set()
from pandas import Series, DataFrame
import pandas as pd
import numpy as np
import sys
reload(sys)
sys.setdefaultencoding('UTF-8')
seaborn.set(font='Osaka') #Specify Japanese font
#Can be used below
Recommended Posts