示例#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)
示例#2
0
def Swarmplot(xlabel, ylabel, hue):
    m = multiEDA(df_train, xlabel=xlabel, ylabel=ylabel)
    return m.swarmplot(hue=hue)
示例#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)
示例#4
0
def Pointplot(xlabel, ylabel, hue):
    m = multiEDA(df_train, xlabel=xlabel, ylabel=ylabel)
    return m.pointplot(hue=hue)
示例#5
0
def Stripplot(xlabel, ylabel, hue):
    m = multiEDA(df_train, xlabel=xlabel, ylabel=ylabel)
    return m.stripplot(hue=hue)
示例#6
0
def Violinplot(xlabel, ylabel, hue):
    m = multiEDA(df_train, xlabel=xlabel, ylabel=ylabel)
    return m.violinplot(hue=hue)
示例#7
0
def Boxplot(xlabel, ylabel, hue):
    m = multiEDA(df_train, xlabel=xlabel, ylabel=ylabel)
    return m.boxplot(hue=hue)
示例#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)
示例#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)
示例#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)