Are you selecting the right data type in Pandas?
![](https://www.deeplearningdaily.com/wp-content/uploads/2022/09/are-you-selecting-the-right-data-type-in-pandas_631e50043228e-375x210.png)
![python pandas](https://miro.medium.com/max/1024/1*HLNh_x0lFW1zQyWUBXgyvg.png)
Choosing the right data type will save a lot of memory!
How does your EDA start?
import pandas as pd
df = pd.read_csv(‘house_price_madrid.csv’)
df.head()
df.dtypes
Deep Learning, NLP, NMT, AI, ML
Choosing the right data type will save a lot of memory!
How does your EDA start?
import pandas as pd
df = pd.read_csv(‘house_price_madrid.csv’)
df.head()
df.dtypes