• 主页

  • 投资

  • IT

    🔥
  • 设计

  • 销售

  • 共95篇

    python3.X - 数据分析 - Pandas

关闭

返回栏目

关闭

返回python3.X - 数据分析 - Pandas栏目

41 - 列级 - astype("float64") - 替换数据类型

作者:

贺及楼

成为作者

更新日期:2023-08-27 20:49:02

astype()替换数据类型

作用:第一次是为了下方可以替换

  1. import numpy as np
  2. import pandas as pd
  3. df["人数"] = df["人数"].astype("str") # 改为str
  4. data = df.astype("int") # 类型转换
  5. data = df.astype("int64") # 类型转换
  6. data = df.astype("int64", copy=False) # 不与原数据关联
  7. data = df.astype({"管理域": "int32"}) # 指定字段转指定类型
  8. df["A"] = df["A"].replace({"$":"",",":""}, regex = True) # float前去掉逗号
  9. data = df.astype("float")
  10. data = df.astype("object")
  1. df["b_col"] = pd.to_datetime(df["b_col"]) # 字符串转成pandas日期格式
  2. df["timestamp"] = df["order_dt"].apply(lambda x: int(x.timestamp())) # pandas日期格式转成时间戳(有缺陷:要设置时区,否则会错误,用下面的apply方法)
  3. df["order_dt"]=pd.to_datetime(df.order_dt,format="%Y%m%d")
  4. df["order_dt"]=pd.to_datetime(df.order_dt,format="%H:%M:%S")
  5. df["order_dt"]=pd.to_datetime(df.order_dt,format="%Y-%m-%d %H:%M:%S")
  6. df["date_str"] = df["date_str"].dt.strftime("%Y-%m-%d %H:%M:%S") # 转成字符串
  7. df["time"] = df["ctime"].apply(lambda x: time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(x))) # 时间戳转日期

时间字符串转时间戳

  1. import time
  2. df["目标列名"] = df.apply(time_tran, args=("列名",), axis=1)
  3. def time_tran(df, role):
  4. timeArray = time.strptime(df[role], "%Y-%m-%d %H:%M:%S")
  5. t1 = time.mktime(timeArray)
  6. return t1