当前位置:网站首页>Astype conversion data type
Astype conversion data type
2022-06-26 04:50:00 【I am a little monster】
astype Method : The generic function , Can be used to dataframe Convert any column in to another type
Common data types are :int integer ;float floating-point ;object/str character string ;category Classified data .
import pandas as pd
import seaborn as sns
tips=sns.load_dataset('tips')# choice seaborn Self contained data set tips
print(tips.dtypes)# see tips The type of each column of data
tips['sex']=tips['sex'].astype(str)# take sex The column is converted to a string type and assigned to sex Column
print(tips.dtypes)
tips['sex_str']=tips['sex'].astype(str)# take sex The column is converted to a string type and assigned to the new column
print(tips.dtypes)The output is as follows :
total_bill float64
tip float64
sex category
smoker category
day category
time category
size int64
dtype: object
[Finished in 1.8s]total_bill float64
tip float64
sex object
smoker category
day category
time category
size int64
dtype: object
[Finished in 1.7s]total_bill float64
tip float64
sex category
smoker category
day category
time category
size int64
sex_str object
dtype: object
[Finished in 1.7s]
边栏推荐
- Multipass Chinese document - setup driver
- UWB超高精度定位系统原理图
- 防撤回测试记录
- 2022.2.16
- Sort query
- JWT token authentication verification
- What is the best way to store chat messages in a database? [Close] - best way to store chat messages in a database? [closed]
- Zhongshanshan: engineers after being blasted will take off | ONEFLOW u
- YOLOV5训练结果的解释
- Multipass Chinese document - remote use of multipass
猜你喜欢

mysql高级学习(跟着尚硅谷老师周阳学习)

Yolov5 super parameter setting and data enhancement analysis

1.16 learning summary

天才制造者:獨行俠、科技巨頭和AI|深度學習崛起十年

Sixtool- source code of multi-functional and all in one generation hanging assistant

Statsmodels Library -- linear regression model

torchvision_ Transform (image enhancement)

Thinkphp6 implements a simple lottery system

08_ Spingboot integrated redis

Dbeaver installation and configuration of offline driver
随机推荐
SSH password free login, my server password free login to the other server, the other server password free login to your server
Advanced learning of MySQL (learning from Shang Silicon Valley teacher Zhou Yang)
Numpy data input / output
1.12 learning summary
Multipass Chinese document - use instance command alias
How can the intelligent transformation path of manufacturing enterprises be broken due to talent shortage and high cost?
【quartz】从数据库中读取配置实现动态定时任务
排序查询
Solution to back-off restarting failed container
A new paradigm for large model application: unified feature representation optimization (UFO)
PHP inherited in class return does not work
Laravel pay payment access process
Selection of programming language
2020-12-18
Multipass Chinese document - setup driver
ROS notes (07) - Implementation of client and server
1.17 learning summary
【Latex】错误类型总结(持更)
Multipass中文文档-远程使用Multipass
BACK-OFF RESTARTING FAILED CONTAINER 的解决方法