Answers for "How to estimate memory of dataset using python command"

0

How to estimate memory of dataset using python command

import pandas as pd

data_url="https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2020/2020-03-10/tuition_cost.csv"
df = pd.read_csv(data_url)

df.info(memory_usage="deep")
Posted by: Guest on May-22-2021

Code answers related to "How to estimate memory of dataset using python command"

Python Answers by Framework

Browse Popular Code Answers by Language