Python/Pandas&Numpy

pandas Tricks_13๐Ÿ‘‰๐Ÿป 'change display options' (Kevin by DataSchool)

metamong 2022. 4. 17.

๐Ÿ•บ pandas & dataframe์€ ๋—„๋ ˆ์•ผ ๋—„ ์ˆ˜ ์—†๋Š” ๊ด€๊ณ„! ๐Ÿ•บ

โ‰ช์ฃผ์–ด์ง„ dataframe์ด ์œก์•ˆ์ƒ ์–ด๋–ป๊ฒŒ ๋ณด์ด๊ฒŒ ํ•˜๋Š” ์ง€ ์—ฌ๋Ÿฌ ์„ค์ •์„ ํ†ตํ•ด ๋ฐ”๊ฟ”๋ณด์žโ‰ซ

โ€ป ์—ฌ๊ธฐ์„œ ์ค‘์š”ํ•œ๊ฑด, data๋Š” internallyํ•˜๊ฒŒ ๋ฐ”๋€Œ์ง€ ์•Š๋Š”๋‹ค๋Š” ์  (์œก์•ˆ์ƒ ๋ณด์ด๋Š” ํ˜•ํƒœ๋งŒ ๋ฐ”๊ฟ€ ๋ฟ!) โ€ป

 

๐Ÿ‰ pd.set_option() docu ๐Ÿ‰

https://pandas.pydata.org/pandas-docs/version/0.23/generated/pandas.set_option.html#

 

pandas.set_option(pat, value) = <pandas.core.config.CallableDynamicDoc object>

 

→ pat์ด๋ผ๋Š” ์ธ์ž์— ๋ฐ”๊ฟ€ option์˜ ์ข…๋ฅ˜๋ฅผ ์ง‘์–ด๋„ฃ๋Š”๋‹ค

→ pat ์ธ์ž์— ๋งž๋Š” ์•Œ๋งž์€ value๋ฅผ ์„ค์ •ํ•ด ์›ํ•˜๋Š” ๋Œ€๋กœ display๋˜๊ฒŒ ์„ค์ •!

 

โ‰ชpat ์ข…๋ฅ˜โ‰ซ

 

→ ๊ทธ๋•Œ ๊ทธ๋•Œ ์›ํ•˜๋Š” ์ž…๋ง›์— ๋งž๋Š” ์„ค์ •์ธ์ž ์ข…๋ฅ˜๋ฅผ ๊ณ ๋ฅด๋ฉด ๋  ๋“ฏ ํ•˜๋‹ค!

 

โ‰ชpat์— ๋”ฐ๋ฅธ value ์„ค๋ช…โ‰ซ

* ์œ ์šฉํ•˜๋‹ค๊ณ  ์ƒ๊ฐ๋˜๋Š” ์„ค์ •๋งŒ highlight ํ•ด ๋†“์Œ!

 

๐Ÿฅ• compute.use_bottleneck : bool) Use the bottleneck library to accelerate if it is installed, the default is True Valid values: False,True [default: True] [currently: True]

๐Ÿฅ• compute.use_numexpr : bool) Use the numexpr library to accelerate computation if it is installed, the default is True Valid values: False,True [default: True] [currently: True]

๐Ÿฅ• display.chop_threshold : float or Noneif set to a float value, all float values smaller then the given threshold will be displayed as exactly 0 by repr and friends. [default: None] [currently: None]

๐Ÿฅ• display.colheader_justify : ‘left’/’right’Controls the justification of column headers. used by DataFrameFormatter. [default: right] [currently: right]

๐Ÿฅ• display.column_space No description available.[default: 12] [currently: 12]

๐Ÿฅ• display.date_dayfirst : boolean) When True, prints and parses dates with the day first, eg 20/01/2005 [default: False] [currently: False]

๐Ÿฅ• display.date_yearfirst : boolean) When True, prints and parses dates with the year first, eg 2005/01/20 [default: False] [currently: False]

๐Ÿฅ• display.encoding : str/unicode) Defaults to the detected encoding of the console. Specifies the encoding to be used for strings returned by to_string, these are generally strings meant to be displayed on the console. [default: UTF-8] [currently: UTF-8]

๐Ÿฅ• display.expand_frame_repr : boolean) Whether to print out the full DataFrame repr for wide DataFrames across multiple lines, max_columns is still respected, but the output will wrap-around across multiple “pages” if its width exceeds display.width. [default: True] [currently: True]

๐Ÿฅ• display.float_format : callable) The callable should accept a floating point number and return a string with the desired format of the number. This is used in some places like SeriesFormatter. See formats.format.EngFormatter for an example. [default: None] [currently: None] โ‰ซ '์ •ํ•ด์ง„ ์†Œ์ˆ˜์  ์ž๋ฆฌ์ˆ˜๊นŒ์ง€๋งŒ dataframe์— ํ‘œ์‹œ๋˜๊ฒŒ ์„ค์ •' 

๐Ÿฅ• display.html.border : intA border=value attribute is inserted in the <table> tag for the DataFrame HTML repr. [default: 1] [currently: 1]display.html.table_schema : booleanWhether to publish a Table Schema representation for frontends that support it. (default: False) [default: False] [currently: False]

๐Ÿฅ• display.html.use_mathjax : boolean) When True, Jupyter notebook will process table contents using MathJax, rendering mathematical expressions enclosed by the dollar symbol. (default: True) [default: True] [currently: True]

๐Ÿฅ• display.large_repr : ‘truncate’/’info’For DataFrames exceeding max_rows/max_cols, the repr (and HTML repr) can show a truncated table (the default from 0.13), or switch to the view from df.info() (the behaviour in earlier versions of pandas). [default: truncate] [currently: truncate]

๐Ÿฅ• display.latex.escape : boolThis specifies if the to_latex method of a Dataframe uses escapes special characters. Valid values: False,True [default: True] [currently: True]

๐Ÿฅ• display.latex.longtable :boolThis specifies if the to_latex method of a Dataframe uses the longtable format. Valid values: False,True [default: False] [currently: False]

๐Ÿฅ• display.latex.multicolumn : boolThis specifies if the to_latex method of a Dataframe uses multicolumns to pretty-print MultiIndex columns. Valid values: False,True [default: True] [currently: True]

๐Ÿฅ• display.latex.multicolumn_format : boolThis specifies if the to_latex method of a Dataframe uses multicolumns to pretty-print MultiIndex columns. Valid values: False,True [default: l] [currently: l]

๐Ÿฅ• display.latex.multirow : boolThis specifies if the to_latex method of a Dataframe uses multirows to pretty-print MultiIndex rows. Valid values: False,True [default: False] [currently: False]

๐Ÿฅ• display.latex.repr : booleanWhether to produce a latex DataFrame representation for jupyter environments that support it. (default: False) [default: False] [currently: False]

๐Ÿฅ• display.max_categories : intThis sets the maximum number of categories pandas should output when printing out a Categorical or a Series of dtype “category”. [default: 8] [currently: 8]

๐Ÿฅ• display.max_columns : int) If max_cols is exceeded, switch to truncate view. Depending on large_repr, objects are either centrally truncated or printed as a summary view. ‘None’ value means unlimited. In case python/IPython is running in a terminal and large_repr equals ‘truncate’ this can be set to 0 and pandas will auto-detect the width of the terminal and print a truncated object which fits the screen width. The IPython notebook, IPython qtconsole, or IDLE do not run in a terminal and hence it is not possible to do correct auto-detection. [default: 0] [currently: 0]

๐Ÿฅ• display.max_colwidth : int) The maximum width in characters of a column in the repr of a pandas data structure. When the column overflows, a “…” placeholder is embedded in the output. [default: 50] [currently: 50]

๐Ÿฅ• display.max_info_columns : int) max_info_columns is used in DataFrame.info method to decide if per column information will be printed. [default: 100] [currently: 100]

๐Ÿฅ• display.max_info_rows : int or None) df.info() will usually show null-counts for each column. For large frames this can be quite slow. max_info_rows and max_info_cols limit this null check only to frames with smaller dimensions than specified. [default: 1690785] [currently: 1690785]

๐Ÿฅ• display.max_rows : int) If max_rows is exceeded, switch to truncate view. Depending on large_repr, objects are either centrally truncated or printed as a summary view. ‘None’ value means unlimited. In case python/IPython is running in a terminal and large_repr equals ‘truncate’ this can be set to 0 and pandas will auto-detect the height of the terminal and print a truncated object which fits the screen height. The IPython notebook, IPython qtconsole, or IDLE do not run in a terminal and hence it is not possible to do correct auto-detection. [default: 60] [currently: 15]

๐Ÿฅ• display.max_seq_items : int or None) when pretty-printing a long sequence, no more then max_seq_items will be printed. If items are omitted, they will be denoted by the addition of “…” to the resulting string. If set to None, the number of items to be printed is unlimited. [default: 100] [currently: 100]

๐Ÿฅ• display.memory_usage : bool, string or None) This specifies if the memory usage of a DataFrame should be displayed when df.info() is called. Valid values True,False,’deep’ [default: True] [currently: True]

๐Ÿฅ• display.multi_sparse : boolean“sparsify” MultiIndex display (don’t display repeated elements in outer levels within groups) [default: True] [currently: True]

๐Ÿฅ• display.notebook_repr_html : booleanWhen True, IPython notebook will use html representation for pandas objects (if it is available). [default: True] [currently: True]

๐Ÿฅ• display.pprint_nest_depth : intControls the number of nested levels to process when pretty-printing [default: 3] [currently: 3]

๐Ÿฅ• display.precision : int) Floating point output precision (number of significant digits). This is only a suggestion [default: 6] [currently: 6] โ‰ซ '๊ณผํ•™์  ํ‘œ๊ธฐ๋ฒ•์œผ๋กœ ๋ณ€ํ™˜ํ•  ์†Œ์ˆ˜์  ์ž๋ฆฌ์ˆ˜๋ฅผ ์ •ํ•˜๋Š” option' 

๐Ÿฅ• display.show_dimensions : boolean or ‘truncate’) Whether to print out dimensions at the end of DataFrame repr. If ‘truncate’ is specified, only print out the dimensions if the frame is truncated (e.g. not display all rows and/or columns) [default: truncate] [currently: truncate]

๐Ÿฅ• display.unicode.ambiguous_as_wide : boolean) Whether to use the Unicode East Asian Width to calculate the display text width. Enabling this may affect to the performance (default: False) [default: False] [currently: False]

๐Ÿฅ• display.unicode.east_asian_width : boolean) Whether to use the Unicode East Asian Width to calculate the display text width. Enabling this may affect to the performance (default: False) [default: False] [currently: False]

๐Ÿฅ• display.width : int) Width of the display in characters. In case python/IPython is running in a terminal this can be set to None and pandas will correctly auto-detect the width. Note that the IPython notebook, IPython qtconsole, or IDLE do not run in a terminal and hence it is not possible to correctly detect the width. [default: 80] [currently: 80]

๐Ÿฅ• html.border : intA border=value attribute is inserted in the <table> tag for the DataFrame HTML repr. [default: 1] [currently: 1] (Deprecated, use display.html.border instead.)

๐Ÿฅ• io.excel.xls.writer : stringThe default Excel writer engine for ‘xls’ files. Available options: auto, xlwt. [default: auto] [currently: auto]

๐Ÿฅ• io.excel.xlsm.writer : stringThe default Excel writer engine for ‘xlsm’ files. Available options: auto, openpyxl. [default: auto] [currently: auto]

๐Ÿฅ• io.excel.xlsx.writer : stringThe default Excel writer engine for ‘xlsx’ files. Available options: auto, openpyxl, xlsxwriter. [default: auto] [currently: auto]

๐Ÿฅ• io.hdf.default_format : formatdefault format writing format, if None, then put will default to ‘fixed’ and append will default to ‘table’ [default: None] [currently: None]

๐Ÿฅ• io.hdf.dropna_table : boolean) drop ALL nan rows when appending to a table [default: False] [currently: False]

๐Ÿฅ• io.parquet.engine : stringThe default parquet reader/writer engine. Available options: ‘auto’, ‘pyarrow’, ‘fastparquet’, the default is ‘auto’ [default: auto] [currently: auto]mode.chained_assignment : stringRaise an exception, warn, or no action if trying to use chained assignment, The default is warn [default: warn] [currently: warn]mode.sim_interactive : booleanWhether to simulate interactive mode for purposes of testing [default: False] [currently: False]

๐Ÿฅ• mode.use_inf_as_na : booleanTrue means treat None, NaN, INF, -INF as NA (old way), False means None and NaN are null, but INF, -INF are not NA (new way). [default: False] [currently: False]

๐Ÿฅ• mode.use_inf_as_null : booleanuse_inf_as_null had been deprecated and will be removed in a future version. Use use_inf_as_na instead. [default: False] [currently: False] (Deprecated, use mode.use_inf_as_na instead.)

๐Ÿฅ• plotting.matplotlib.register_converters : bool_ Whether to register converters with matplotlib’s units registry for dates, times, datetimes, and Periods. Toggling to False will remove the converters, restoring any converters that pandas overwrote. [default: True] [currently: True]

 

---- titanic ์˜ˆ์‹œ ----

 

Q1) ์†Œ์ˆ˜์  ๋‘˜์งธ์ž๋ฆฌ๊นŒ์ง€๋งŒ ๋ณด์ด๊ฒŒ ์„ค์ •ํ•˜๊ธฐ

A)

 

titanic[['age', 'fare']].head(5)

pd.set_option('display.float_format', '{:.2f}'.format)

titanic[['age', 'fare']].head(5)

pd.reset_option('display.float_format')

 

- ์‰ฝ๊ฒŒ ํ™•์ธ ๊ฐ€๋Šฅ -

 

Q2. ๋„์ค‘์— ์ž˜๋ฆฌ๋Š” ์ •๋ณด ์—†์ด ๋ชจ๋“  ํ–‰๋“ค ๋ณด๊ธฐ์— ์„ค์ •ํ•˜๊ธฐ

A) None์œผ๋กœ ์„ค์ •ํ•˜๋ฉด ๋งŽ์€ row๋ฅผ ํ•œ๋ฒˆ์— ์ƒ๋žต์—†์ด ๋‹ค ๋ณด์—ฌ์คŒ

โ€ป ์ค‘๊ฐ„์— ๋ช‡ ๊ฐœ์˜ ํ–‰๋“ค๋งŒ ์ž˜๋ฆฌ๋Š” ๊ฒฝ์šฐ ์ด option์„ ์‚ฌ์šฉํ•˜๋ฉด ์ข‹์Œ! โ€ป

 

pd.set_option('display.max_rows', None)
pd.reset_option('display.max_rows')

 

๐Ÿท ์ฃผ์˜ ๐Ÿท

reset_option์„ ์‚ฌ์šฉํ•ด ์›์œ„์น˜๋กœ ์„ค์ • ๋Œ๋ฆฌ๋Š” ๊ฒƒ. ์žŠ์ง€ ๋ง์ž


* ์ธ๋„ค์ผ ์ถœ์ฒ˜) https://www.vectorstock.com/royalty-free-vector/computer-display-landing-page-flat-circle-icon-vector-9327388

* ์ถœ์ฒ˜) https://www.youtube.com/watch?v=RlIiVeig3hc 

* ์ฐธ๊ณ ) https://mindscale.kr/course/pandas-basic/options/

* ์ฐธ๊ณ 2) https://minorman.tistory.com/84

๋Œ“๊ธ€