LoginSignup
1
1

More than 5 years have passed since last update.

jupyterとpandasインストール

Posted at

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') # 日本語フォントを指定する

# 以下使える
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1