MCPcopy Index your code
hub / github.com/javascriptdata/danfojs / getColumnData

Method getColumnData

src/danfojs-base/core/generic.ts:413–419  ·  view source on GitHub ↗

* Returns the underlying data in Array column format. * Similar to this.values, but in column format.

()

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

transposeArrayMethod · 0.80

Tested by

no test coverage detected