DataFrame.axis
Return an Object containing the axis of the DataFrame. It has the row axis labels and column axis labels as the only members.
danfo.DataFrame.axis
Node
Browser
const dfd = require("danfojs-node")
let data = {"A": [-20.1, 30, 47.3, -20],
"B": [34, -4, 5, 6],
"C": [20, -20, 30, -40]}
let df = new dfd.DataFrame(data, {index: ["a", "b", "c", "d"]})
console.log(df.axis)
Output
{ index: [ 'a', 'b', 'c', 'd' ], columns: [ 'A', 'B', 'C' ] }
Last modified 1yr ago