Python 数据处理
JasonYuJX
这个作者很懒,什么都没留下…
展开
-
pandas 快速添加一行数据
文章内容有参考这篇,https://blog.csdn.net/jiaqiangbandongg/article/details/52961272第一种方式,直接插入一行:import pandas as pdfrom pandas import DataFramedf3=DataFrame(np.arange(16).reshape((4,4)),index=['a','b','...原创 2018-11-07 13:56:06 · 80069 阅读 · 2 评论 -
利用python进行单边T检验
可以利用 python 中的 scipy.stats.ttest_ind 做关于两组数据的双边 t 检验,结果比较简单。但是做 大于或者小于的单边检测的时候需要做一些处理,才能得到正确的结果。from scipy import statsimport numpy as npA = np.array([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9])B = np.arra...翻译 2018-11-07 15:19:32 · 13413 阅读 · 4 评论 -
Python 英文的月份转数字及数字转英文
借助 calendar 模块可以很快实现转换。In [1]: import calendar# 数字转月份的简写In [2]: calendar.month_abbr[12]Out[2]: 'Dec'# 简写月份转数字In [3]: list(calendar.month_abbr).index('Dec')Out[3]: 12# 数字转月份的全写In [4]: cal...原创 2019-01-24 19:45:09 · 29543 阅读 · 4 评论 -
Python 中 time, strptime, strftime 的使用
time 的使用In [1]: import time In [2]: ticks = time.time()In [3]: print('当前时间戳为:',ticks)当前时间戳为: 1548331961.6183758 # 时间戳从1970年开始计算,适合用于做时间运算In [4]: local_time = time.localtime(time.time())In...原创 2019-01-24 20:34:04 · 2034 阅读 · 1 评论 -
Python 去掉字符串中的特殊字符,空格
In [1]: import reIn [2]: textOut[2]: " \nALL this shows is that YOU don't know much about SCSI.\n\nSCSI-1 {with a SCSI-1 contro...原创 2019-02-19 11:16:58 · 18542 阅读 · 4 评论