【ML学习历程】Jupyter的使用

1.安装anaconda和pycharm

配置pycharm中项目的解析器为anaconda安装包下的python.exe

helloworld:

import numpy
import matplotlib
import sklearn
import pandas

print("Hello, Machine Learning!")

输出:
在这里插入图片描述
由于python原生的list性能低也不方便,所以使用numpy

Jupyter的使用

New了一个python3的file之后
【ML学习历程】Jupyter的使用_第1张图片
修改HelloML即是xxx.py的文件名
复杂一些,写个for
【ML学习历程】Jupyter的使用_第2张图片
体会Run cells and select below的作用-在所选的输入框覆盖新结果
但还是建议用快捷键
【ML学习历程】Jupyter的使用_第3张图片
继续玩玩看。。。
【ML学习历程】Jupyter的使用_第4张图片
可以看出Jupyter会存变量(data),然后想重启
【ML学习历程】Jupyter的使用_第5张图片

你可能感兴趣的:(ML)