浅谈python 中的 type(), dtype(), astype()的区别


Posted in Python onApril 09, 2020

如下所示:

函数 说明
type() 返回数据结构类型(list、dict、numpy.ndarray 等)
dtype() 返回数据元素的数据类型(int、float等) 备注:1)由于 list、dict 等可以包含不同的数据类型,因此不可调用dtype()函数 2)np.array 中要求所有元素属于同一数据类型,因此可调用dtype()函数
astype() 改变np.array中所有数据元素的数据类型。 备注:能用dtype() 才能用 astype()

测试代码:

import numpy as np
class Myclass():
 pass
 
a = [[1,2,3],[4,5,6]]
b = {'a':1,'b':2,'c':3}
c = np.array([1,2,3])
d = Myclass()
e = np.linspace(1,5,10)
c_ = c.astype(np.float)
f = 10
 
print("type(a)=",type(a))
print("type(b)=",type(b))
print("type(c)=",type(c))
print("type(d)=",type(d))
print("type(e)=",type(e))
print("type(f)=",type(f))
print("type(c_)=",type(c_))
 
# print(a.dtype) ## AttributeError: 'list' object has no attribute 'dtype'
# print(b.dtype) ## AttributeError: 'dict' object has no attribute 'dtype'
print(c.dtype)
# print(d.dtype) ## AttributeError: 'Myclass' object has no attribute 'dtype'
print(e.dtype)
print(c_.dtype)
# print(f.dtype) ## AttributeError: 'int' object has no attribute 'dtype'
 
# print(a.astype(np.int)) ## AttributeError: 'list' object has no attribute 'astype'
# print(b.astype(np.int)) ## AttributeError: 'dict' object has no attribute 'astype'
print(c.astype(np.int))
# print(d.astype(np.int)) ## AttributeError: 'Myclass' object has no attribute 'astype'
print(e.astype(np.int))
# print(f.astype(np.int)) ## AttributeError: 'int' object has no attribute 'astype'

补充知识:pandas astype()错误

由于数据出现错误

DataError: No numeric types to aggregate

改正以后才认识到astype的重要性。

Top15['populations'] = Top15['Energy Supply'].div(Top15['Energy Supply per Capita']).astype(float)
df_mean = ((df.set_index('Continent').groupby(level=0)['populations'].agg({'mean' : np.mean})))
#加了astype(float)后无错误

以上这篇浅谈python 中的 type(), dtype(), astype()的区别就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python二分法实现实例
Nov 21 Python
使用python实现递归版汉诺塔示例(汉诺塔递归算法)
Apr 08 Python
在Python的框架中为MySQL实现restful接口的教程
Apr 08 Python
Python实现优先级队列结构的方法详解
Jun 02 Python
动感网页相册 python编写简单文件夹内图片浏览工具
Aug 17 Python
Python编程求解二叉树中和为某一值的路径代码示例
Jan 04 Python
python并发编程多进程 互斥锁原理解析
Aug 20 Python
Pandas将列表(List)转换为数据框(Dataframe)
Apr 24 Python
python批量修改文件名的示例
Sep 27 Python
Django搭建项目实战与避坑细节详解
Dec 06 Python
深入浅析python3 依赖倒置原则(示例代码)
Jul 09 Python
python中数组和列表的简单实例
Mar 25 Python
利用python绘制数据曲线图的实现
Apr 09 #Python
利用python生成照片墙的示例代码
Apr 09 #Python
Python 改变数组类型为uint8的实现
Apr 09 #Python
pandas 强制类型转换 df.astype实例
Apr 09 #Python
python 给图像添加透明度(alpha通道)
Apr 09 #Python
Python日志logging模块功能与用法详解
Apr 09 #Python
解决python DataFrame 打印结果不换行问题
Apr 09 #Python
You might like
DC这些乐高系列动画电影你看过几部?
2020/04/09 欧美动漫
php中日期加减法运算实现代码
2011/12/08 PHP
详解Yii2.0 rules验证规则集合
2017/03/21 PHP
常见JS效果之图片减速度滚动实现代码
2011/12/08 Javascript
js nextSibling属性和previousSibling属性概述及使用注意
2013/02/16 Javascript
如何使用Jquery获取Form表单中被选中的radio值
2013/08/09 Javascript
jquery+ajax请求且带返回值的代码
2015/08/12 Javascript
jQuery动画效果图片轮播特效
2016/01/12 Javascript
jQuery xml字符串的解析、读取及查找方法
2016/03/01 Javascript
深入解析JavaScript中的立即执行函数
2016/05/21 Javascript
简单好用的nodejs 爬虫框架分享
2017/03/26 NodeJs
使用jQuery ajaxupload插件实现无刷新上传文件
2017/04/23 jQuery
js实现移动端编辑添加地址【模仿京东】
2017/04/28 Javascript
详解webpack多页面配置记录
2018/01/22 Javascript
Vuex的实战使用详解
2019/10/31 Javascript
Python获取网页上图片下载地址的方法
2015/03/11 Python
python一键升级所有pip package的方法
2017/01/16 Python
Python 文件处理注意事项总结
2017/04/10 Python
Python中函数eval和ast.literal_eval的区别详解
2017/08/10 Python
python去除字符串中的换行符
2017/10/11 Python
python中lambda()的用法
2017/11/16 Python
使用Django2快速开发Web项目的详细步骤
2019/01/06 Python
selenium+python自动化测试之使用webdriver操作浏览器的方法
2019/01/23 Python
python学生管理系统学习笔记
2019/03/19 Python
Python Django 实现简单注册功能过程详解
2019/07/29 Python
如何利用python给图片添加半透明水印
2019/09/06 Python
PyQt5中QSpinBox计数器的实现
2021/01/18 Python
Python爬取某平台短视频的方法
2021/02/08 Python
Farfetch美国:奢侈品牌时尚购物平台
2019/05/02 全球购物
计算机专业个人简短的自我评价
2013/10/23 职场文书
社区活动策划方案
2014/08/21 职场文书
乡镇遵守党的政治纪律情况对照检查材料
2014/09/26 职场文书
初中地理教学反思
2016/02/19 职场文书
告诉你创业计划书的8个实用技巧
2019/07/12 职场文书
导游词之天津古文化街
2019/11/09 职场文书
MySQL InnoDB ReplicaSet(副本集)简单介绍
2021/04/24 MySQL