Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 825 Bytes

dataframe.values.md

File metadata and controls

45 lines (35 loc) · 825 Bytes
description
Return a the JavaScript array representation of the DataFrame.

DataFrame.values

danfo.DataFrame.values

Note: To get the Tensorflow tensor of the DataFrame, you can call the .tensor property on the DataFrame.

Examples

{% tabs %} {% tab title="Node" %}

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)

console.log(df.values)

{% endtab %}

{% tab title="Browser" %}

{% endtab %} {% endtabs %}

{% tabs %} {% tab title="Output" %}

[
  [ -20.1, 34, 20 ],
  [ 30, -4, -20 ],
  [ 47.3, 5, 30 ],
  [ -20, 6, -40 ]
]

{% endtab %} {% endtabs %}