How to Understand Any Dataset: 7 Essential Questions
1. How big is the data?
df.shape is used in pandas to get the dimensions of a DataFrame.
2. How does the data look like?
df.sample in pandas is used to select rows or columns from a DataFrame randomly.
3. What is the data type of cols?
df.info() i...
nabaranjan1.hashnode.dev1 min read