pandas练习手册_20201119

Essential Pandas for Machine Learning


Agenda

  1. Introduction to Pandas
  2. Understanding Series & DataFrames
  3. Loading CSV,JSON
  4. Connecting databases
  5. Descriptive Statistics
  6. Accessing subsets of data - Rows, Columns, Filters
  7. Handling Missing Data
  8. Dropping rows & columns
  9. Handling Duplicates
  10. Function Application - map, apply, groupby, rolling, str
  11. Merge, Join & Concatenate
  12. Pivot-tables
  13. Normalizing JSON

1. Introduction to Pandas

  • High Performance, Easy-to-use open source library for Data Analysis
  • Creates tabular format of data from different sources like csv, json, database.
  • Have utilities for descriptive statistics, aggregation, handling missing data
  • Database utilities like merge, join a

猜你喜欢

转载自blog.csdn.net/a18829292719/article/details/109813627