Skip to content

Latest commit

 

History

History
111 lines (93 loc) · 5.77 KB

danfo.dataframe.var.md

File metadata and controls

111 lines (93 loc) · 5.77 KB
description
Return unbiased variance over requested axis.

DataFrame.var

danfo.DataFrame.var(options)

Parameters Type Description Default
options Object axis: 0 or 1. If 0, compute the mean column-wise, if 1, row-wise. Defaults to 1 { axis: 1 }

Examples

Computes the variance of values along default axis 1 (column)

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

const dfd = require("danfojs-node")

let data = [[11, 20, 3], [1, 15, 6], [2, 30, 40], [2, 89, 78]]
let cols = ["A", "B", "C"]

let df = new dfd.DataFrame(data, { columns: cols })
df.print()
df.var().print()

{% endtab %}

{% tab title="Browser" %}

{% endtab %} {% endtabs %}

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

╔════════════╤═══════════════════╤═══════════════════╤═══════════════════╗
║            │ A                 │ B                 │ C                 ║
╟────────────┼───────────────────┼───────────────────┼───────────────────╢
║ 0          │ 11                │ 20                │ 3                 ║
╟────────────┼───────────────────┼───────────────────┼───────────────────╢
║ 1          │ 1                 │ 15                │ 6                 ║
╟────────────┼───────────────────┼───────────────────┼───────────────────╢
║ 2          │ 2                 │ 30                │ 40                ║
╟────────────┼───────────────────┼───────────────────┼───────────────────╢
║ 3          │ 2                 │ 89                │ 78                ║
╚════════════╧═══════════════════╧═══════════════════╧═══════════════════╝

╔═══╤═══════════════════╗
║ 0 │ 72.33333333333334 ║
╟───┼───────────────────╢
║ 1 │ 50.33333333333333 ║
╟───┼───────────────────╢
║ 2 │ 388               ║
╟───┼───────────────────╢
║ 3 │ 2244.333333333333 ║
╚═══╧═══════════════════╝

{% endtab %} {% endtabs %}

Computes the variance of values along row axis (0)

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

const dfd = require("danfojs-node")

let data = [[11, 20, 3], [1, 15, 6], [2, 30, 40], [2, 89, 78]]
let cols = ["A", "B", "C"]

let df = new dfd.DataFrame(data, { columns: cols })
df.print()
df.var({ axis: 0 }).print()

{% endtab %}

{% tab title="Browser" %}

{% endtab %} {% endtabs %}

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

╔════════════╤═══════════════════╤═══════════════════╤═══════════════════╗
║            │ A                 │ B                 │ C                 ║
╟────────────┼───────────────────┼───────────────────┼───────────────────╢
║ 0          │ 11                │ 20                │ 3                 ║
╟────────────┼───────────────────┼───────────────────┼───────────────────╢
║ 1          │ 1                 │ 15                │ 6                 ║
╟────────────┼───────────────────┼───────────────────┼───────────────────╢
║ 2          │ 2                 │ 30                │ 40                ║
╟────────────┼───────────────────┼───────────────────┼───────────────────╢
║ 3          │ 2                 │ 89                │ 78                ║
╚════════════╧═══════════════════╧═══════════════════╧═══════════════════╝

╔═══╤════════════════════╗
║ A │ 22                 ║
╟───┼────────────────────╢
║ B │ 1172.3333333333333 ║
╟───┼────────────────────╢
║ C │ 1232.25            ║
╚═══╧════════════════════╝

{% endtab %} {% endtabs %}