option | list | ❌ | Option to use.
- cache [bool] : If set to True, the vDataFrame saves computed aggregations in memory.
- colors [list] : List of colors used to draw graphics.
- color_style [str] : Style used to color the graphics, one of the following: "rgb", "sunset", "retro", "shimbg", "swamp", "med", "orchid", "magenta", "orange", "vintage", "vivid", "berries", "refreshing", "summer", "tropical", "india", "default."
- count_on [bool] : If set to True, the total number of rows in vDataFrames and tablesamples is computed and displayed in the footer (if footer_on is True).
- footer_on [bool] : If set to True, vDataFrames and tablesamples show a footer that contains information about the displayed rows and columns.
- interactive [bool] : If set to True, VerticaPy outputs will be displayed on interactive tables.
- max_columns [int] : Maximum number of columns to display. If the specified value is invalid, max_columns is not changed.
- max_rows [int] : Maximum number of rows to display. If the specified value is invalid, max_rows is not changed.
- mode [str] : How to display VerticaPy outputs, one of the following:
- full : Regular display mode.
- light : Minimalist display mode.
- overwrite_model [bool] : If set to True, training a model with the same name as an existing model overwrites the existing model.
- percent_bar [bool] : If set to True, the percent of non-missing values is displayed.
- print_info [bool] : If set to True, information is printed when the vDataFrame is modified.
- random_state [int] : Integer used to seed the random number generator in VerticaPy.
- save_query_profile [str / list / bool] : If set to "all" or True, all function calls are stored in the query profile table. This makes it possible to differentiate the VerticaPy logs from the Vertica logs. You can also provide a list of specific methods to store. For example: if you specify ["corr", "describe"], only the logs associated with those two methods are stored. If set to False, this functionality is deactivated.
- sql_on [bool] : If set to True, SQL queries are displayed.
- temp_schema [str] : Specifies the temporary schema that certain methods/functions use to create intermediate objects, if any.
- time_on [bool] : If set to True, displays the elapsed time for all SQL queries.
- tqdm [bool] : If set to True, a loading bar is displayed when using iterative functions.
|