stat_ecdf()¶import pandas as pd
from lets_plot import *
LetsPlot.setup_html()
df = pd.read_csv("https://raw.githubusercontent.com/JetBrains/lets-plot-docs/master/data/iris.csv")
print(df.shape)
df.head()
ggplot(df, aes(x="sepal_length")) + stat_ecdf()
ggplot(df, aes(x="sepal_length")) + stat_ecdf(geom="point", n=15)
ggplot(df, aes(x="sepal_length", color="species")) + stat_ecdf()