环境: win10 anaconda3 steps: 1) open anaconda prompt 2) change the current directory to the destinated working directory 3) input "jupyter notebook" the ...
分类:
其他好文 时间:
2017-06-17 20:36:27
阅读次数:
138
命令模式(按键Esc开启)
Enter:转入编辑模式
Shift-Enter:运行本单元,选中下个单元
Ctrl-Enter:运行本单元
Alt-Enter:运行本单元,在其下插入新单元
Y:单元转入代码状态
M:单元转入markdown状态
R:单元转入raw状态
1:设定1级标题
2:设定2级..
分类:
其他好文 时间:
2017-06-15 16:30:56
阅读次数:
183
1. Matplotlib Backend Layer Deals with th e rendering of plots to screen or files In jupyter notebooks, we use the inline backend Artist Layer Contain ...
分类:
编程语言 时间:
2017-06-10 20:22:42
阅读次数:
366
生成配置文件jupyter_notebook_config.py(~/.jupyter下) IP绑定 123456登录密码 ...
分类:
其他好文 时间:
2017-05-18 14:51:01
阅读次数:
245
打开jupyter突然报错: An unknown error occurred while loading this notebook. This version can load notebook formats v4 or earlier. See the server log for det ...
分类:
编程语言 时间:
2017-05-16 14:39:59
阅读次数:
814
1.将数据(csv格式)导入jupyter import pandas as pd import matplotlib.pyplot as plt filename='data.csv' raw=pd.read_csv filename print(raw.shape) raw.head()#打印前 ...
分类:
编程语言 时间:
2017-05-06 21:50:02
阅读次数:
314
这个任务同样是在Jupyter Notebook中完成, 项目目的是通过前面的所有特征列,当然去掉序号列,然后预测最后一列,收入'income',究竟是大于50K,还是小于等于50K. 第一步,探索数据,像探索性统计里经常涉及到的频数,均值,众数或者众位数相关的计算,我们通过这些统计指标,使用pyt ...
分类:
其他好文 时间:
2017-05-04 22:01:55
阅读次数:
765
ipythonnotebook是一个基于浏览器的Python数据分析工具,使用起来非常方便,具有极强的交互方式和富文本的展示效果。jupyter是它的升级版,它的安装也非常方便,一般Anaconda安装包中会自带。安装好以后直接输入jupyternotebook便可以在浏览器中使用。但是它默认只能在本地访问..
分类:
系统相关 时间:
2017-04-25 15:05:51
阅读次数:
273
Jupyter Notebook 的快捷键 Jupyter Notebook 有两种键盘输入模式。编辑模式,允许你往单元中键入代码或文本;这时的单元框线是绿色的。命令模式,键盘输入运行程序命令;这时的单元框线是灰色。 命令模式 (按键 Esc 开启) Enter : 转入编辑模式 Shift-Ent ...
分类:
其他好文 时间:
2017-04-22 00:56:03
阅读次数:
162