(data: any, options: BaseDataOptionType = {})
| 48 | export default class DataFrame extends NDframe implements DataFrameInterface { |
| 49 | [key: string]: any |
| 50 | constructor(data: any, options: BaseDataOptionType = {}) { |
| 51 | const { index, columns, dtypes, config } = options; |
| 52 | super({ data, index, columns, dtypes, config, isSeries: false }); |
| 53 | this.$setInternalColumnDataProperty(); |
| 54 | } |
| 55 | |
| 56 | /** |
| 57 | * Maps all column names to their corresponding data, and return them as Series objects. |
nothing calls this directly
no test coverage detected