
Data Analyst with Python
Daisy Lee
这个作者很懒,什么都没留下…
展开
-
笔记:SQL查漏补缺
HAVING 语句在 SQL 中增加 HAVING 子句原因是,WHERE 关键字无法与聚合函数一起使用。HAVING 子句可以让我们筛选分组后的各组数据。SELECT release_yearFROM filmsGROUP BY release_yearHAVING COUNT(title) > 200;USING 语句在SQL中连接两张表,如果连接的两个字段相等时,可以...原创 2020-03-16 20:06:38 · 318 阅读 · 0 评论 -
笔记:Introduction to Data Science in Python
Introduction to Data Science in Pythonimport statsmodels as sm # used in machine learningimport seaborn as sns # a visualization libraryimport numpy as np # a module for performing mathematical op...原创 2020-03-11 22:21:56 · 2232 阅读 · 0 评论 -
笔记:Intermediate Python
MatplotlibCASE: demographic案例:人口统计数据The world bank has estimates of the world population for the years 1950 up to 2100. The years are loaded in your workspace as a list called year, and the corres...原创 2020-03-13 23:13:28 · 1285 阅读 · 0 评论 -
笔记:Python Data Science Toolbox (Part 1)
Functions原创 2020-03-14 18:03:53 · 751 阅读 · 0 评论