Jupyter Notebook(持续更新)

Posted Asa Wang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jupyter Notebook(持续更新)相关的知识,希望对你有一定的参考价值。

1.引用Pandas

import pandas as pd

2.创建DataFrame

bb=pd.DataFrame(enron_data)

3.查看列 & 行

dataFrame.shape[1]

dataFrame.shape[0]

4.选择

选择行:

data.loc[‘a‘,[‘w‘,‘x‘]] #返回‘a’行‘w‘、‘x‘列,这种用于选取行索引列索引已知

参考:http://blog.csdn.net/xiaodongxiexie/article/details/53108959

 

 

参考内容:

http://blog.sina.com.cn/s/blog_4c9dc2a10102vkhd.html

以上是关于Jupyter Notebook(持续更新)的主要内容,如果未能解决你的问题,请参考以下文章

万文多图详解新学Python之Jupyter Notebook学习(持续更新)

从远程服务器持续使用 Jupyter Notebook

Jupyter notebook 使用Turorial

jupyter notebook怎么配置

jupyter notebook 的使用说明 转自 http://blog.csdn.net/tina_ttl/article/details/51031113#pythonjupyter-note

Jupyter notebook 中 从url中load 数据集, 会存在哪里?