python
python知识
一直在路上ing
这个作者很懒,什么都没留下…
展开
-
python批量给图片打文字水印
1、导包from PIL import Imagefrom PIL import ImageDrawfrom PIL import ImageFontimport os2、单张图片测试# 单张图片测试from PIL import Imagefrom PIL import ImageDrawfrom PIL import ImageFontimageFile = "C:\\Users\\Administrator\\Desktop\\图片\\103-1.jpg"im = Imag原创 2021-05-28 17:07:42 · 147 阅读 · 0 评论 -
python知识复习1
目录1、global2、文件读取:open、read、write、seek、os、1、global在函数中,把局部变量定义为全局变量2、文件读取:open、read、write、seek、os、seek()函数是Python中操作文件游标移动操作的函数read读取以后,光标会在末尾f.seek(0) 将光标放在开头3、input4、numpy 数组...原创 2021-04-02 11:01:21 · 104 阅读 · 0 评论 -
statsmodel之summary参数解释
本文转载自:https://blog.csdn.net/weixin_44090397/article/details/97922297# -*-coding:utf-8 -*-import pandas as pdimport matplotlib.pyplot as pltimport matplotlibimport numpy as npimport time, datetimeimport statsmodels.api as smdf = pd.read_csv('D:\wor转载 2020-11-30 10:41:43 · 3933 阅读 · 0 评论 -
卡方检验的理解
转载:统计学——卡方检验和卡方分布卡方分布Chi-squared Distribution卡方检验原创 2020-11-19 09:43:36 · 275 阅读 · 0 评论 -
python 使用清华镜像安装第三方包
python包安装方法使用清华镜像安装包pip install -i https://pypi.tuna.tsinghua.edu.cn/simple matplotlib安装jupyter 目录pip install -i https://pypi.tuna.tsinghua.edu.cn/simple jupyter_contrib_nbextensions参考:Jupyter Notebook 添加目录插件(nbextensions)...原创 2020-09-14 11:36:35 · 1109 阅读 · 0 评论 -
python groupby与agg的使用方法
import pandas as pdimport numpy as npdf = pd.DataFrame({'key1':['a', 'a', 'b', 'b', 'a'], 'key2':['one', 'two', 'one', 'two', 'one'], 'data1':np.random.randint(1,10,size=5),#返回5个1到10之间的整数,[1,10)原创 2020-08-03 11:28:24 · 11725 阅读 · 0 评论 -
python 日期处理的常用方法
日期处理1、将不规整的日期转为标准日期,并提取年月,年份作为新字段datetime.strptime(x,’%d.%m.%Y’)将字符串x转为datetime,注意字符串格式不统一,也许为‘%m-%d-%Y’a.strftime(’%Y-%m’)将日期a提取出年月,成为字符串sales_info['date'] = sales_info['date'].map(lambda x:datetime.strptime(x,'%d.%m.%Y'))sales_info['date_Ym'] = s原创 2020-07-30 17:24:49 · 912 阅读 · 0 评论 -
python 类的三种使用方法
类的三种使用方法一、普通的使用方法,需要至少传递一个参数,第一个参数一般用self,这样的方法必须通过一个类的实例去访问。self表示一个具体的实例本身,存储对象的数据属性。class Student: def __init__(self, name, score1, score2): self.name = name self.score1 = score1 self.score2 = score2 def add_score(self原创 2020-07-30 15:30:24 · 1821 阅读 · 0 评论