当前位置:网站首页>Dataframe sorting: datetime format splitting; Delete a specific line; Group integration.
Dataframe sorting: datetime format splitting; Delete a specific line; Group integration.
2022-07-26 03:06:00 【Ten at eight】
Import CSV Format data , And separate the month, year and day .
take csv Import format data as dataframe Format .
also , take date columne Split on the day of .
First, make sure date columne The format in is datetime Format .
import pandas as pd
#pd.set_option('display.max_rows', None)
df = pd.read_csv(r"D:\xxx.csv",parse_dates=["date"])
df["year"] = df.date.apply(lambda x:x.year)
df["month"] = df.date.apply(lambda x:x.month)
df["day"] = df.date.apply(lambda x:x.day)
Delete specific lines
Put one in each line columne If 0, Then delete the line .
df=df.drop(df[df["xxx"] == 0].index)
Group by year and month
Use groupby function . And for size columne In sum .
month_size = df["size"].groupby([df["year"],df["month"]]).sum()
day_size = df["size"].groupby([df["year"],df["month"],df["day"]]).sum()
边栏推荐
- Oxycon 2022 network capture frontier conference is about to open!
- 信息系统项目管理师必背核心考点(五十)合同内容约定不明确规定
- VOFA+ 串口调试助手
- MySQL build websites data table
- Standardize your own debug process
- Golang 中‘...‘的用法
- STM32 - PWM learning notes
- Keyboardtraffic, a tool developed by myself to solve CTF USB keyboard traffic
- 图像识别(六)| 激活函数
- VR panoramic shooting and production of business center helps businesses effectively attract people
猜你喜欢

VR panoramic shooting and production of business center helps businesses effectively attract people

Vofa+ serial port debugging assistant

Parallelloopbody in opencv

ShardingSphere数据分片

The difference between the world wide web, the Internet and the Internet

Cycle and branch (I)

STM——EXTI外部中断学习笔记

FPGA_Vivado软件初次使用流程_超详细

Be highly vigilant! Weaponization of smartphone location data on the battlefield

Arthas' dynamic load class (retransform)
随机推荐
Code dynamically controls textview to move right (not XML)
Image recognition (VII) | what is the pooling layer? What's the effect?
[sql] case expression
Method of manually cloning virtual machine in esxi6.7
Shardingsphere data slicing
Autojs cloud control source code + display
对于稳定性测试必需关注的26点
26 points that must be paid attention to for stability test
Summary of Huawei virtualization fusioncompute knowledge points
File operation (I) -- File introduction and file opening and closing methods
手把手教你依赖管理
Programming example of STM32 state machine -- fully automatic washing machine (Part 1)
[steering wheel] tool improvement: common shortcut key set of sublime text 4
[C Advanced] deeply explore the storage of data (in-depth analysis + interpretation of typical examples)
How to install with USB flash disk?
Win11大小写提示图标怎么关闭?Win11大小写提示图标的关闭方法
Standardize your own debug process
图像识别(七)| 池化层是什么?有什么作用?
snownlp库各功能及用法
cmd cpm 命令汇总