I have a massive dataframe, and I\'m getting the error:
TypeError: (\"Empty \'DataFrame\': no numeric data to plot\", \'occurred at index 159220\')
Sounds like you're calling df.plot(). That error indicates that you're trying to plot a frame that has no numeric data. The data types shouldn't affect what you print().
df.plot()
print()
Use print(df.iloc[159220])
print(df.iloc[159220])