4.1. To About

4.1.1. SetUp

>>> import pandas as pd
>>>
>>> pd.set_option('display.max_columns', 50)
>>> pd.set_option('display.max_rows', 200)
>>> pd.set_option('display.width', 500)
>>> pd.set_option('display.memory_usage', 'deep')
>>> pd.set_option('display.precision', 4)

4.1.2. Most Frequently Used

  • df.to_csv()

  • df.to_dict()

  • df.to_excel()

  • df.to_json()

  • df.to_sql()

  • df.to_parquet()

4.1.3. Other

  • df.to_clipboard()

  • df.to_dense()

  • df.to_feather()

  • df.to_gbq()

  • df.to_hdf()

  • df.to_html()

  • df.to_latex()

  • df.to_msgpack()

  • df.to_numpy()

  • df.to_period()

  • df.to_pickle()

  • df.to_records()

  • df.to_sparse()

  • df.to_stata()

  • df.to_string()

  • df.to_timestamp()

  • df.to_xarray()