Pandas: Loading Data & EDA
✕Loading and Writting Data
Question 1 of 2
- Display
first 8,last 5andsample 10records. - Create
manhattan_dfthat consists of record from Manhattan only. - Save
manhattan_dfintomanhattan_schools.psvwith pipe delimeter. - Save
manhattan_dfintomanhattan_schools.xlsxwithout index. - Save
manhattan_dfinto SQLlite database with table namemanhattan_schools. - Load table
actorstable fromchinook.db. Save it as excel fileactors.xlsx. - Load
actors.xlsxfile generated above. Save it asactors.tsvfile with tab separator.
On Colab: Loadschools.csvinto a DataFrame and- Display
EDA Report
Question 2 of 2
- Display sample 10 records.
- Display column names present in data.
- Display the number of rows and columns present in file.
- Show datatype of each columns to check if they align with data.
- Display summary stat of numeric columns with
.describe. - Display not-null data distribution with
.info. - Use
.value_countsto see distribution ofeducationcolumn. - Display number of null value associated with each column.
- Generate data profiling report using
ydata-profilingand navigate result.
On Colab: Loadheart_disease_raw.csvinto a DataFrame and
