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
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.
See an example of creating DataFrame
Examples of setting configs
Add a DataFrame header
const data = {
"Name": ["Apples", "Mango", "Banana", "Pear"],
"Count": [21, 5, 30, 10],
"Price": [200, 300, 40, 250]
};
const df = new DataFrame(data, {
config: {
tableDisplayConfig: {
header: {
alignment: 'center',
content: 'THE HEADER\nThis is the table about something',
},
},
}
});
df.print()
╔════════════════════════════════════════════════════════════════════════╗
║ THE HEADER ║
║ This is the table about something ║
╟────────────┬───────────────────┬───────────────────┬───────────────────╢
║ │ Name │ Count │ Price ║
╟────────────┼───────────────────┼───────────────────┼───────────────────╢
║ 0 │ Apples │ 21 │ 200 ║
╟────────────┼───────────────────┼───────────────────┼───────────────────╢
║ 1 │ Mango │ 5 │ 300 ║
╟────────────┼───────────────────┼───────────────────┼───────────────────╢
║ 2 │ Banana │ 30 │ 40 ║
╟────────────┼───────────────────┼───────────────────┼───────────────────╢
║ 3 │ Pear │ 10 │ 250 ║
╚════════════╧═══════════════════╧═══════════════════╧═══════════════════╝
Configure column size and display format of DataFrame