1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

jupyterとpandasインストール

1
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?