AutoViz and Lux

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 9

AutoViz and Lux. One linear Auto Visualization Python… | ... https://bobrupakroy.medium.

com/autoviz-and-lux-8de6fe4d9a25

1 of 9 11/2/2021, 1:54 PM
AutoViz and Lux. One linear Auto Visualization Python… | ... https://bobrupakroy.medium.com/autoviz-and-lux-8de6fe4d9a25

pip install autoviz

from autoviz.AutoViz_Class import AutoViz_Class


AV = AutoViz_Class()

df = AV.AutoViz("dataset_penguins.csv")

2 of 9 11/2/2021, 1:54 PM
AutoViz and Lux. One linear Auto Visualization Python… | ... https://bobrupakroy.medium.com/autoviz-and-lux-8de6fe4d9a25

3 of 9 11/2/2021, 1:54 PM
AutoViz and Lux. One linear Auto Visualization Python… | ... https://bobrupakroy.medium.com/autoviz-and-lux-8de6fe4d9a25

4 of 9 11/2/2021, 1:54 PM
AutoViz and Lux. One linear Auto Visualization Python… | ... https://bobrupakroy.medium.com/autoviz-and-lux-8de6fe4d9a25

5 of 9 11/2/2021, 1:54 PM
AutoViz and Lux. One linear Auto Visualization Python… | ... https://bobrupakroy.medium.com/autoviz-and-lux-8de6fe4d9a25

import lux
import pandas as pd

df = pd.read_csv("https://raw.githubusercontent.com/lux-
org/lux-datasets/master/data/college.csv")
df

df.intent = ["AverageCost","SATAverage"]
df

6 of 9 11/2/2021, 1:54 PM
AutoViz and Lux. One linear Auto Visualization Python… | ... https://bobrupakroy.medium.com/autoviz-and-lux-8de6fe4d9a25

from lux.vis.Vis import Vis


Vis(["Region=New England","MedianEarnings"],df)

from lux.vis.VisList import VisList

7 of 9 11/2/2021, 1:54 PM
AutoViz and Lux. One linear Auto Visualization Python… | ... https://bobrupakroy.medium.com/autoviz-and-lux-8de6fe4d9a25

VisList(["Region=?","AverageCost"],df)

8 of 9 11/2/2021, 1:54 PM
AutoViz and Lux. One linear Auto Visualization Python… | ... https://bobrupakroy.medium.com/autoviz-and-lux-8de6fe4d9a25

9 of 9 11/2/2021, 1:54 PM

You might also like