Anaconda Python小白使用说明

2017-08-16  本文已影响0人  乔安安安安娜的芝麻日常

刚刚接触Python,目标用Python把数据导入QuickBI,做可视化分析。我用的是Mac,现在Mark我的入门。

首先下载anaconda,附官网链接不赘述。

https://www.continuum.io/downloads

进入anaconda界面

Method1: 点摁式

进入Jupyter,页面将跳转到浏览器。
image.png
进入页面,创建NoteBook,就可以开始你的Python表演了~~><~~
image.png

Method2: cmd

进入黑窗(Win在开始搜索cmd),如下操作:
#cd-空格-放置py文件的文件夹位置(可以直接把文件夹拖进黑框)
cd /Users/joann/Untitled\ Folder 
jupyter notebook
路径查询
import os   
cwd = os.getcwd()  # Get the current working directory (cwd)  
files = os.listdir(cwd)  # Get all the files in that directory  
print("Files in '%s': %s" % (cwd, files))  

把文件放在绝对路径下,就可以直接读取了
相对路径,要把路径写进去,如下

df1 = pd.read_csv('0806.csv', 'r',encoding= u'gbk')
df2 = pd.read_table('//Users//name//Desktop//CDNOW_master.txt')
Python入门建议(来自于我贴心的小室友)

1-Python区分大小写!!Shift+Enter执行并新建下一行
2-先学习Numpy、pandas、数据加载存储文件格式、数据整理、数据聚合与分组
3-多逛论坛,对比R,开源的资源很多

image.png
推荐几个比较好的学习网站

1.廖雪峰大师:https://www.liaoxuefeng.com/wiki/0014316089557264a6b348958f449949df42a6d3a2e542c000/
2.Python数据分析:http://www.jianshu.com/u/22307cee1166
3.用Python做数据处理必看的12 个使效率倍增的Pandas技巧:http://blog.csdn.net/wy250229163/article/details/53504707
(内附技术文档链接)
4.用Python分析用户消费行为:https://zhuanlan.zhihu.com/p/27910430
(综合型的,学习分析的方法)
5.pyechars:https://github.com/chenjiandongx/pyecharts
(非常牛叉的画图,膜拜)

上一篇下一篇

猜你喜欢

热点阅读