【深耕 Python】Data Science with Python 数据科学(11)pandas 数据处理(二)

2024-04-25 06:12

本文主要是介绍【深耕 Python】Data Science with Python 数据科学(11)pandas 数据处理(二),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

写在前面

关于数据科学环境的建立,可以参考我的博客:

【深耕 Python】Data Science with Python 数据科学(1)环境搭建

往期数据科学博文:

【深耕 Python】Data Science with Python 数据科学(2)jupyter-lab和numpy数组

【深耕 Python】Data Science with Python 数据科学(3)Numpy 常量、函数和线性空间

【深耕 Python】Data Science with Python 数据科学(4)(书337页)练习题及解答

【深耕 Python】Data Science with Python 数据科学(5)Matplotlib可视化(1)

【深耕 Python】Data Science with Python 数据科学(6)Matplotlib可视化(2)

【深耕 Python】Data Science with Python 数据科学(7)书352页练习题

【深耕 Python】Data Science with Python 数据科学(8)pandas数据结构:Series和DataFrame

【深耕 Python】Data Science with Python 数据科学(9)书361页练习题

【深耕 Python】Data Science with Python 数据科学(10)pandas 数据处理(一)

代码说明: 由于实机运行的原因,可能省略了某些导入(import)语句。

本期,继续对诺奖获得者(laureates.csv)进行分析。

Python Code Snippet 1

1957年,Chen Ning Yang和Tsung-Dao Lee的获奖信息。

print(nobel.loc[nobel["surname"].str.contains("Yang", na=False)])
print(nobel.loc[nobel["surname"].str.contains("Lee", na=False)])
# 杨振宁id  firstname surname        born        died bornCountry bornCountryCode  \
68  68  Chen Ning    Yang  1922-09-22  0000-00-00       China              CN   bornCity diedCountry diedCountryCode diedCity gender  year category  \
68  Hofei Anhwei         NaN             NaN      NaN   male  1957  physics   overallMotivation  share  \
68               NaN      2   motivation  \
68  "for their penetrating investigation of the so...   name          city country  
68  Institute for Advanced Study  Princeton NJ     USA  
# 李政道id  firstname surname        born        died bornCountry  \
69    69  Tsung-Dao     Lee  1926-11-24  0000-00-00       China   
148  149   David M.     Lee  1931-01-20  0000-00-00         USA   
263  265    Yuan T.     Lee  1936-11-19  0000-00-00      Taiwan   bornCountryCode  bornCity diedCountry diedCountryCode diedCity gender  \
69               CN  Shanghai         NaN             NaN      NaN   male   
148              US    Rye NY         NaN             NaN      NaN   male   
263              TW   Hsinchu         NaN             NaN      NaN   male   year   category overallMotivation  share  \
69   1957    physics               NaN      2   
148  1996    physics               NaN      3   
263  1986  chemistry               NaN      3   motivation  \
69   "for their penetrating investigation of the so...   
148  "for their discovery of superfluidity in heliu...   
263  "for their contributions concerning the dynami...   name         city country  
69        Columbia University  New York NY     USA  
148        Cornell University    Ithaca NY     USA  
263  University of California  Berkeley CA     USA  

Python Code Snippet 2

理查德·费曼(Richard Feynman)和居里夫妇(Marie Curie, Pierre Curie)的获奖信息:

print(nobel.loc[nobel["surname"].str.contains("Feynman", na=False)])
print(len(nobel.loc[nobel["surname"].str.contains("Feynman", na=False)]))
curies = nobel.loc[nobel["surname"].str.contains("Curie", na=False)]
print(curies)
print(curies[["firstname", "surname"]])
# 理查德费曼获奖信息id   firstname  surname        born        died bornCountry  \
86  86  Richard P.  Feynman  1918-05-11  1988-02-15         USA   bornCountryCode     bornCity diedCountry diedCountryCode        diedCity  \
86              US  New York NY         USA              US  Los Angeles CA   gender  year category overallMotivation  share  \
86   male  1965  physics               NaN      3   motivation  \
86  "for their fundamental work in quantum electro...   name         city country  
86  California Institute of Technology (Caltech)  Pasadena CA     USA# 仅有1个姓氏为费曼的获奖者
1# 居里夫妇id firstname       surname        born        died  \
4      5    Pierre         Curie  1859-05-15  1906-04-19   
5      6     Marie         Curie  1867-11-07  1934-07-04   
6      6     Marie         Curie  1867-11-07  1934-07-04   
191  194     Irène  Joliot-Curie  1897-09-12  1956-03-17   bornCountry bornCountryCode bornCity diedCountry  \
4                         France              FR    Paris      France   
5    Russian Empire (now Poland)              PL   Warsaw      France   
6    Russian Empire (now Poland)              PL   Warsaw      France   
191                       France              FR    Paris      France   diedCountryCode    diedCity  gender  year   category overallMotivation  \
4                FR       Paris    male  1903    physics               NaN   
5                FR  Sallanches  female  1903    physics               NaN   
6                FR  Sallanches  female  1911  chemistry               NaN   
191              FR       Paris  female  1935  chemistry               NaN   share                                         motivation  \
4        4  "in recognition of the extraordinary services ...   
5        4  "in recognition of the extraordinary services ...   
6        1  "in recognition of her services to the advance...   
191      2  "in recognition of their synthesis of new radi...   name   city country  
4    École municipale de physique et de chimie indu...  Paris  France  
5                                                  NaN    NaN     NaN  
6                                  Sorbonne University  Paris  France  
191                                 Institut du Radium  Paris  France# 仅显示姓氏和名字firstname       surname
4      Pierre         Curie
5       Marie         Curie
6       Marie         Curie
191     Irène  Joliot-Curie

Python Code Snippet 3

学者的获奖次数统计。

print(nobel.groupby(["firstname", "surname"]).size())
print(nobel.groupby(["firstname", "surname"]).size().sort_values())
laureates = nobel.groupby(["id", "firstname", "surname"])
sizes = laureates.size()
print(sizes[sizes > 1])
# 第三栏中的数字为此人的获奖次数
firstname   surname    
A. Michael  Spence         1
Aage N.     Bohr           1
Aaron       Ciechanover    1Klug           1
Abdulrazak  Gurnah         1..
Youyou      Tu             1
Yuan T.     Lee            1
Yves        Chauvin        1
Zhores      Alferov        1
Élie        Ducommun       1
Length: 941, dtype: int64  # 共941位获奖者,数据类型为int64# 将获奖次数升序排序后输出
firstname     surname 
A. Michael    Spence      1
Nicolay G.    Basov       1
Niels         Bohr        1
Niels K.      Jerne       1
Niels Ryberg  Finsen      1..
Élie          Ducommun    1
Linus         Pauling     2
John          Bardeen     2
Frederick     Sanger      2
Marie         Curie       2
Length: 941, dtype: int64# 仅输出获奖次数大于1的学者(该数据截止至2021年,2022年新产生了一位双料得主K. Barry Sharpless)
id   firstname  surname
6    Marie      Curie      2  # 物理学奖和化学奖
66   John       Bardeen    2  # 物理学奖*2
217  Linus      Pauling    2  # 化学奖和和平奖
222  Frederick  Sanger     2  # 化学奖*2
dtype: int64

参考文献 Reference

《Learn Enough Python to be Dangerous——Software Development, Flask Web Apps, and Beginning Data Science with Python》, Michael Hartl, Boston, Pearson, 2023.

这篇关于【深耕 Python】Data Science with Python 数据科学(11)pandas 数据处理(二)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/933884

相关文章

Python如何使用__slots__实现节省内存和性能优化

《Python如何使用__slots__实现节省内存和性能优化》你有想过,一个小小的__slots__能让你的Python类内存消耗直接减半吗,没错,今天咱们要聊的就是这个让人眼前一亮的技巧,感兴趣的... 目录背景:内存吃得满满的类__slots__:你的内存管理小助手举个大概的例子:看看效果如何?1.

Python+PyQt5实现多屏幕协同播放功能

《Python+PyQt5实现多屏幕协同播放功能》在现代会议展示、数字广告、展览展示等场景中,多屏幕协同播放已成为刚需,下面我们就来看看如何利用Python和PyQt5开发一套功能强大的跨屏播控系统吧... 目录一、项目概述:突破传统播放限制二、核心技术解析2.1 多屏管理机制2.2 播放引擎设计2.3 专

Python中随机休眠技术原理与应用详解

《Python中随机休眠技术原理与应用详解》在编程中,让程序暂停执行特定时间是常见需求,当需要引入不确定性时,随机休眠就成为关键技巧,下面我们就来看看Python中随机休眠技术的具体实现与应用吧... 目录引言一、实现原理与基础方法1.1 核心函数解析1.2 基础实现模板1.3 整数版实现二、典型应用场景2

Python实现无痛修改第三方库源码的方法详解

《Python实现无痛修改第三方库源码的方法详解》很多时候,我们下载的第三方库是不会有需求不满足的情况,但也有极少的情况,第三方库没有兼顾到需求,本文将介绍几个修改源码的操作,大家可以根据需求进行选择... 目录需求不符合模拟示例 1. 修改源文件2. 继承修改3. 猴子补丁4. 追踪局部变量需求不符合很

MySQL大表数据的分区与分库分表的实现

《MySQL大表数据的分区与分库分表的实现》数据库的分区和分库分表是两种常用的技术方案,本文主要介绍了MySQL大表数据的分区与分库分表的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有... 目录1. mysql大表数据的分区1.1 什么是分区?1.2 分区的类型1.3 分区的优点1.4 分

Mysql删除几亿条数据表中的部分数据的方法实现

《Mysql删除几亿条数据表中的部分数据的方法实现》在MySQL中删除一个大表中的数据时,需要特别注意操作的性能和对系统的影响,本文主要介绍了Mysql删除几亿条数据表中的部分数据的方法实现,具有一定... 目录1、需求2、方案1. 使用 DELETE 语句分批删除2. 使用 INPLACE ALTER T

python+opencv处理颜色之将目标颜色转换实例代码

《python+opencv处理颜色之将目标颜色转换实例代码》OpenCV是一个的跨平台计算机视觉库,可以运行在Linux、Windows和MacOS操作系统上,:本文主要介绍python+ope... 目录下面是代码+ 效果 + 解释转HSV: 关于颜色总是要转HSV的掩膜再标注总结 目标:将红色的部分滤

Python 中的异步与同步深度解析(实践记录)

《Python中的异步与同步深度解析(实践记录)》在Python编程世界里,异步和同步的概念是理解程序执行流程和性能优化的关键,这篇文章将带你深入了解它们的差异,以及阻塞和非阻塞的特性,同时通过实际... 目录python中的异步与同步:深度解析与实践异步与同步的定义异步同步阻塞与非阻塞的概念阻塞非阻塞同步

Python Dash框架在数据可视化仪表板中的应用与实践记录

《PythonDash框架在数据可视化仪表板中的应用与实践记录》Python的PlotlyDash库提供了一种简便且强大的方式来构建和展示互动式数据仪表板,本篇文章将深入探讨如何使用Dash设计一... 目录python Dash框架在数据可视化仪表板中的应用与实践1. 什么是Plotly Dash?1.1

在C#中调用Python代码的两种实现方式

《在C#中调用Python代码的两种实现方式》:本文主要介绍在C#中调用Python代码的两种实现方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录C#调用python代码的方式1. 使用 Python.NET2. 使用外部进程调用 Python 脚本总结C#调