Попробуйте:
import pandas as pd
pd.set_option('display.max_columns', 200) # increase the number of visible columns in output to 200
pd.set_option('display.max_rows', 200) # increase the number of visible rows in output to 200
РЕДАКТИРОВАТЬ:
Вставьте следующий код в любую ячейку, и это должно работать для вас:
%%HTML
<style type="text/css">
table.dataframe td, table.dataframe th {
border: none !important;
color: black !important;
}
</style>