“Funkcja głowy Pythona Pokaż wszystkie kolumny” Kod odpowiedzi

Funkcja głowy Pythona Pokaż wszystkie kolumny

with pd.option_context('display.max_rows', 2, 'display.max_columns', 85):
    print (df)
Panicky Pony

Zobacz wszystkie kolumny pandy

print(dataframe.columns)
PeeBee!

Funkcja głowy Pythona Pokaż wszystkie kolumny

# with HTML output
from IPython.display import display_html

def display_frames(frames, num_space=0):
    t_style = '<table style="display: inline;"'
    tables_html = [df.to_html().replace('<table',t_style)
                  for df in frames]
    space = '&nbsp;' * num_space
    display_html(space.join(tables_html),raw=True)

years = 2016,2017,2018 # initial data.
stock_tables = [pd.read_csv('stocks_{}.csv'.format(year))
                for year in years]

display_frames(stock_tables,10)
stocks_2016, stocks_2017, stocks_2018 = stock_tables
icy_milktea27

Odpowiedzi podobne do “Funkcja głowy Pythona Pokaż wszystkie kolumny”

Pytania podobne do “Funkcja głowy Pythona Pokaż wszystkie kolumny”

Więcej pokrewnych odpowiedzi na “Funkcja głowy Pythona Pokaż wszystkie kolumny” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu