* Returns the underlying data in Array column format. * Similar to this.values, but in column format.
()
| 411 | * Similar to this.values, but in column format. |
| 412 | */ |
| 413 | get getColumnData() { |
| 414 | if (this.config.isLowMemoryMode) { |
| 415 | return utils.transposeArray(this.values); |
| 416 | } else { |
| 417 | return this.$dataIncolumnFormat; |
| 418 | } |
| 419 | } |
| 420 | |
| 421 | /** |
| 422 | * Returns the size of the NDFrame object |
nothing calls this directly
no test coverage detected