Ejemplo n.º 1
0
def Scatterplot(xlabel,
                ylabel,
                reg=True,
                color=None,
                logx=False,
                robust=False):
    m = multiEDA(df_train, xlabel=xlabel, ylabel=ylabel)
    return m.scatterplot(reg=reg, color=color, logx=logx, robust=robust)
Ejemplo n.º 2
0
def Swarmplot(xlabel, ylabel, hue):
    m = multiEDA(df_train, xlabel=xlabel, ylabel=ylabel)
    return m.swarmplot(hue=hue)
Ejemplo n.º 3
0
def Factorplot(xlabel, ylabel, hue, col, color=None, kind='point'):
    m = multiEDA(df_train, xlabel=xlabel, ylabel=ylabel)
    return m.factorplot(color=color, hue=hue, col=col, kind=kind)
Ejemplo n.º 4
0
def Pointplot(xlabel, ylabel, hue):
    m = multiEDA(df_train, xlabel=xlabel, ylabel=ylabel)
    return m.pointplot(hue=hue)
Ejemplo n.º 5
0
def Stripplot(xlabel, ylabel, hue):
    m = multiEDA(df_train, xlabel=xlabel, ylabel=ylabel)
    return m.stripplot(hue=hue)
Ejemplo n.º 6
0
def Violinplot(xlabel, ylabel, hue):
    m = multiEDA(df_train, xlabel=xlabel, ylabel=ylabel)
    return m.violinplot(hue=hue)
Ejemplo n.º 7
0
def Boxplot(xlabel, ylabel, hue):
    m = multiEDA(df_train, xlabel=xlabel, ylabel=ylabel)
    return m.boxplot(hue=hue)
Ejemplo n.º 8
0
def Correlation(xlabel, ylabel, zoom=0.2, show_cm=True, show_heatmap=True):
    m = multiEDA(df_train, xlabel=xlabel, ylabel=ylabel)
    return m.correlation(zoom=zoom, show_cm=show_cm, show_heatmap=show_heatmap)
Ejemplo n.º 9
0
def Pairplot(xlabel, ylabel, columns, kind='scatter', diag_kind='kde', size=3):
    m = multiEDA(df_train, xlabel=xlabel, ylabel=ylabel)
    return m.pairplot(columns=columns,
                      kind=kind,
                      diag_kind=diag_kind,
                      size=size)
Ejemplo n.º 10
0
def Jointplot(xlabel, ylabel, kind='reg', color='b', add_scatter=False):
    m = multiEDA(df_train, xlabel=xlabel, ylabel=ylabel)
    return m.jointplot(kind=kind, color=color, add_scatter=add_scatter)