things about python

Posted XiaoYNil

tags:

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

jupyter notebook

安装nbextensions

https://www.jianshu.com/p/6efc8e412397

https://blog.csdn.net/weixin_44147265/article/details/109187897

好用的插件123456

https://www.jianshu.com/p/8ec6eecc6921

python

https://matplotlib.org/gallery/lines_bars_and_markers/scatter_demo2.html#sphx-glr-gallery-lines-bars-and-markers-scatter-demo2-py

pycharm创建、激活、删除虚拟环境

ANACONDA

https://mirrors.tuna.tsinghua.edu.cn/help/anaconda/

pycharm使用anaconda环境

anaconda安装了不少包的同学,使用pycharm做local化而不是web化调试时,会用到;

相信你跟我一样在配环境的时候被折磨了?!!!

别急,这里给出可能的解决方案:

创建工程时,选择:previously configured interpreter,但是anaconda环境可能不会直接跳出来,

可以在旁边的浏览小按钮(三个点那种)点开找,如下四个分类里总会有你要的那一款。

性能优化

profile使用时,sort=2可以得到cumulative排序,0是call count 排序,默认按name排,1是emmmm...

常用语句/功能

 

功能实现备注
遍历DataFrame中的每一行for index,row in df.iterrows() 
字典的子集查询https://www.jianshu.com/p/a4aa2d800b8e?t=123注意当value也是字典时,使用类似value['field'] == somevalue 来实现
数据筛选dataframe筛选数据根据某一个列的数据在另外的一个数组中 
错行相减DataFrame.diff函数,periods为1 即下一行减当前行,2则为下两行-当前行,反过来减行不行?可以-1为当前行-减下一行

 

 

 

以上是关于things about python的主要内容,如果未能解决你的问题,请参考以下文章

Needleless Injection Site -3 Things About Needleless Infusion Connectors

[2016-05-20]OMG美语笔记-Do you like Katy Perry?What is favorite thing about her?

TED - How To Get Better At The Things You Care About

将多个 SQL Server 表合并为一个

Four things you sholdn't do At the beginning of New firm

python学习第十七天