👋 Hello! I'm Alphonsio the robot. Ask me a question, I'll try to answer.

create dataframe size

Use the following to create an empty dataframe with a given size (nRows x nCols) in Python / Pandas:

import pandas as pd
df = pd.DataFrame(index=range(nRows),columns=range(nCols))

More