* Returns the dimension of the data. Series have a dimension of 1, * while DataFrames have a dimension of 2.
()
| 228 | * while DataFrames have a dimension of 2. |
| 229 | */ |
| 230 | get ndim(): number { |
| 231 | if (this.$isSeries) { |
| 232 | return 1; |
| 233 | } else { |
| 234 | return 2 |
| 235 | } |
| 236 | } |
| 237 | |
| 238 | /** |
| 239 | * Returns the axis labels of the NDFrame. |
nothing calls this directly
no outgoing calls
no test coverage detected