I’m trying to pretty print a Pandas dataframe without Header nor index, without success
This pretty prints but prints also header and index
import pandas as pd
from IPython.display import display
data=pd.DataFrame(same_data)
display(data)
This removes index (not header) but does not pretty prints
import pandas as pd
from IPython.display import display, Markdown
data=pd.DataFrame(same_data)
display(Markdown(data.to_markdown(index=False)))
What am I doing wrong?