拉长铃铛

文章
3
资源
0
加入时间
2年10月21天

python数据分析总结

索引相关>>frame.reindex([],method = ,fill_value = ) 参数是一个列表,列表的顺序决定frame的显示顺序。 当reindex的参数列表多于frame原有的index的数目,可以使用method进行填充缺失值,method的取值为ffill(或者pad)、bfill(或者backfill) ,分别表示向前填充、向后填充. Fill_value 是对于缺失值的赋值。 reindex不会改变原有frame的排列方式,如果要改变,需要

图片在内存中的大小

Android.graphics.Bitmap类里有一个内部类Bitmap.Config类,在Bitmap类里createBitmap(intwidth, int height, Bitmap.Config config)方法里会用到,打开个这个类一看枚举变量public static final Bitmap.Config ALPHA_8public static final Bitmap....

ubuntu上同时安装anaconda2和anaconda3

anaconda官网上下载anaconda2和anaconda3的安装包。用sh命令运行安装包,过程全部选yes。将anaconda3/bin中与anaconda2/bin重复的命令符号链接,ln -s pip pip3ln -s conda conda3ln -s python python3ln -s jupyter jupyter3ln -s spyder spyder3。。。可以先安装an...