✳flâneur — a map of the web's best reading
DataCamp - Cleaning Data in Python | Joanna
joannaoyzl.github.io · 3,492 words · saved by 1 readers
Datacamp course notes on data cleaning.
Datacamp course notes on data cleaning. Common Data Problems Inconsistent column names (capitalization) Missing data Outliers Duplicate rows (can bias analysis and should be dropped) Untidy Need to process between colums Column types can signal unexpected data values 1 2 3 4 5 6 import pandas as pd df.head() df.tail() df.columns #returns column names df.shape #returns dimension df.info() #additional info about the df Exploratory Data Analysis Frequency count value_counts() is a method we used here to count the number of unique values in each column in descending order 1 2 3 4 5 6 df.info() #kn
Explore this link on the map →related reading
- 12 Tidy data | Python for Data Sciencebyuidatascience.github.io
- Getting started — pandas 3.0.3 documentationpandas.pydata.org
- Pandas Dataframes: OxRSE Trainingtrain.oxrse.uk
- Google Colabcolab.research.google.com
- 聚合、联接或合并数据 - Tableauhelp.tableau.com
- pandas.DataFrame — pandas 3.0.5 documentationpandas.pydata.org
- pandas (software) - Wikipediaen.wikipedia.org
- Stop aggregating away the signal in your data - Stack Overflowstackoverflow.blog
- Intro to data structures — pandas 3.0.3 documentationpandas.pydata.org
- 1. Data prep prerequisites - Splinkmoj-analytical-services.github.io
- Google Colabcolab.research.google.com
- CSC 151 - A computer scientist's perspective on data scienceeikmeier.sites.grinnell.edu