This section describes all user configurable options available on DataFrame/Series creation.
On DataFrame/Series creation, a config object can be passed along to configure some internal properties of the created object. The following list shows what options are available and what they do.
Parameter
Description
tableDisplayConfig
Object, General table display options. Because we use the table package under the hood to display a table in the console, all table display configurations are supported.
tableMaxRow
Number, the total number of rows to display in the console when the print function is called. Defaults to 10
dtypeTestLim
Number, the total number of values to test when inferring data type. Defaults to 20
lowMemoryMode
Boolean, whether to use minimal memory space or not. Defaults to false.
Note: There's a slight decrease in speed when low memory mode is set to true.