py2ls 0.2.1__py3-none-any.whl → 0.2.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- py2ls/data/sns_info.json +74 -0
- py2ls/data/usages_sns.json +25 -0
- py2ls/ips.py +1204 -505
- py2ls/plot.py +808 -30
- py2ls/stats.py +18 -9
- {py2ls-0.2.1.dist-info → py2ls-0.2.2.dist-info}/METADATA +1 -1
- {py2ls-0.2.1.dist-info → py2ls-0.2.2.dist-info}/RECORD +8 -6
- {py2ls-0.2.1.dist-info → py2ls-0.2.2.dist-info}/WHEEL +0 -0
py2ls/data/sns_info.json
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
{
|
2
|
+
"Functions": [
|
3
|
+
"relplot",
|
4
|
+
"scatterplot",
|
5
|
+
"lineplot",
|
6
|
+
"lmplot",
|
7
|
+
"catplot",
|
8
|
+
"stripplot",
|
9
|
+
"boxplot",
|
10
|
+
"violinplot",
|
11
|
+
"boxenplot",
|
12
|
+
"pointplot",
|
13
|
+
"barplot",
|
14
|
+
"countplot",
|
15
|
+
"displot",
|
16
|
+
"histplot",
|
17
|
+
"kdeplot",
|
18
|
+
"ecdfplot",
|
19
|
+
"rugplot",
|
20
|
+
"regplot",
|
21
|
+
"residplot",
|
22
|
+
"pairplot",
|
23
|
+
"jointplot",
|
24
|
+
"plotting_context"
|
25
|
+
],
|
26
|
+
"Category": [
|
27
|
+
"relational",
|
28
|
+
"relational",
|
29
|
+
"relational",
|
30
|
+
"relational",
|
31
|
+
"categorical",
|
32
|
+
"categorical",
|
33
|
+
"categorical",
|
34
|
+
"categorical",
|
35
|
+
"categorical",
|
36
|
+
"categorical",
|
37
|
+
"categorical",
|
38
|
+
"categorical",
|
39
|
+
"distribution",
|
40
|
+
"distribution",
|
41
|
+
"distribution",
|
42
|
+
"distribution",
|
43
|
+
"distribution",
|
44
|
+
"regression",
|
45
|
+
"regression",
|
46
|
+
"grid-based(fig)",
|
47
|
+
"grid-based(fig)",
|
48
|
+
"context"
|
49
|
+
],
|
50
|
+
"Detail": [
|
51
|
+
"A figure-level function for creating scatter plots and line plots. It combines the functionality of scatterplot and lineplot.",
|
52
|
+
"A function for creating scatter plots, useful for visualizing the relationship between two continuous variables.",
|
53
|
+
"A function for drawing line plots, often used to visualize trends over time or ordered categories.",
|
54
|
+
"A figure-level function for creating linear model plots, combining regression lines with scatter plots.",
|
55
|
+
"A figure-level function for creating categorical plots, which can display various types of plots like box plots, violin plots, and bar plots in one function.",
|
56
|
+
"A function for creating a scatter plot where one of the variables is categorical, helping visualize distribution along a categorical axis.",
|
57
|
+
"A function for creating box plots, which summarize the distribution of a continuous variable based on a categorical variable.",
|
58
|
+
"A function for creating violin plots, which combine box plots and KDEs to visualize the distribution of data.",
|
59
|
+
"A function for creating boxen plots, an enhanced version of box plots that better represent data distributions with more quantiles.",
|
60
|
+
"A function for creating point plots, which show the mean (or another estimator) of a variable for each level of a categorical variable.",
|
61
|
+
"A function for creating bar plots, which represent the mean (or other estimators) of a variable with bars, typically used with categorical data.",
|
62
|
+
"A function for creating count plots, which show the counts of observations in each categorical bin.",
|
63
|
+
"A figure-level function that creates distribution plots. It can visualize histograms, KDEs, and ECDFs, making it versatile for analyzing the distribution of data.",
|
64
|
+
"A function for creating histograms, useful for showing the frequency distribution of a continuous variable.",
|
65
|
+
"A function for creating kernel density estimate (KDE) plots, which visualize the probability density function of a continuous variable.",
|
66
|
+
"A function for creating empirical cumulative distribution function (ECDF) plots, which show the proportion of observations below a certain value.",
|
67
|
+
"A function that adds a rug plot to the axes, representing individual data points along an axis.",
|
68
|
+
"A function for creating regression plots, which fit and visualize a regression model on scatter data.",
|
69
|
+
"A function for creating residual plots, useful for diagnosing the fit of a regression model.",
|
70
|
+
"A figure-level function that creates a grid of scatter plots for each pair of variables in a dataset, often used for exploratory data analysis.",
|
71
|
+
"A figure-level function that combines scatter plots and histograms (or KDEs) to visualize the relationship between two variables and their distributions.",
|
72
|
+
"Not a plot itself, but a function that allows you to change the context (style and scaling) of your plots to fit different publication requirements or visual preferences."
|
73
|
+
]
|
74
|
+
}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
{
|
2
|
+
"relplot": "seaborn.relplot(data=None,*,x=None,y=None,hue=None,size=None,style=None,units=None,weights=None,row=None,col=None,col_wrap=None,row_order=None,col_order=None,palette=None,hue_order=None,hue_norm=None,sizes=None,size_order=None,size_norm=None,markers=None,dashes=None,style_order=None,legend='auto',kind='scatter',height=5,aspect=1,facet_kws=None,**kwargs)",
|
3
|
+
"scatterplot": "seaborn.scatterplot(data=None,*,x=None,y=None,hue=None,size=None,style=None,palette=None,hue_order=None,hue_norm=None,sizes=None,size_order=None,size_norm=None,markers=True,style_order=None,legend='auto',ax=None,**kwargs)",
|
4
|
+
"lineplot": "seaborn.lineplot(data=None,*,x=None,y=None,hue=None,size=None,style=None,units=None,weights=None,palette=None,hue_order=None,hue_norm=None,sizes=None,size_order=None,size_norm=None,dashes=True,markers=None,style_order=None,estimator='mean',errorbar=('ci',95),n_boot=1000,seed=None,orient='x',sort=True,err_style='band',err_kws=None,legend='auto',ci='deprecated',ax=None,**kwargs)",
|
5
|
+
"displot": "seaborn.displot(data=None,*,x=None,y=None,hue=None,row=None,col=None,weights=None,kind='hist',rug=False,rug_kws=None,log_scale=None,legend=True,palette=None,hue_order=None,hue_norm=None,color=None,col_wrap=None,row_order=None,col_order=None,height=5,aspect=1,facet_kws=None,**kwargs)",
|
6
|
+
"histplot": "seaborn.histplot(data=None,*,x=None,y=None,hue=None,weights=None,stat='count',bins='auto',binwidth=None,binrange=None,discrete=None,cumulative=False,common_bins=True,common_norm=True,multiple='layer',element='bars',fill=True,shrink=1,kde=False,kde_kws=None,line_kws=None,thresh=0,pthresh=None,pmax=None,cbar=False,cbar_ax=None,cbar_kws=None,palette=None,hue_order=None,hue_norm=None,color=None,log_scale=None,legend=True,ax=None,**kwargs)",
|
7
|
+
"kdeplot": "seaborn.kdeplot(data=None,*,x=None,y=None,hue=None,weights=None,palette=None,hue_order=None,hue_norm=None,color=None,fill=None,multiple='layer',common_norm=True,common_grid=False,cumulative=False,bw_method='scott',bw_adjust=1,warn_singular=True,log_scale=None,levels=10,thresh=0.05,gridsize=200,cut=3,clip=None,legend=True,cbar=False,cbar_ax=None,cbar_kws=None,ax=None,**kwargs)",
|
8
|
+
"ecdfplot": "seaborn.ecdfplot(data=None,*,x=None,y=None,hue=None,weights=None,stat='proportion',complementary=False,palette=None,hue_order=None,hue_norm=None,log_scale=None,legend=True,ax=None,**kwargs)",
|
9
|
+
"rugplot": "seaborn.rugplot(data=None,*,x=None,y=None,hue=None,height=0.025,expand_margins=True,palette=None,hue_order=None,hue_norm=None,legend=True,ax=None,**kwargs)",
|
10
|
+
"distplot": "seaborn.distplot(a=None,bins=None,hist=True,kde=True,rug=False,fit=None,hist_kws=None,kde_kws=None,rug_kws=None,fit_kws=None,color=None,vertical=False,norm_hist=False,axlabel=None,label=None,ax=None,x=None)",
|
11
|
+
"catplot": "seaborn.catplot(data=None,*,x=None,y=None,hue=None,row=None,col=None,kind='strip',estimator='mean',errorbar=('ci',95),n_boot=1000,seed=None,units=None,weights=None,order=None,hue_order=None,row_order=None,col_order=None,col_wrap=None,height=5,aspect=1,log_scale=None,native_scale=False,formatter=None,orient=None,color=None,palette=None,hue_norm=None,legend='auto',legend_out=True,sharex=True,sharey=True,margin_titles=False,facet_kws=None,ci=<deprecated>,**kwargs)",
|
12
|
+
"stripplot": "seaborn.stripplot(data=None,*,x=None,y=None,hue=None,order=None,hue_order=None,jitter=True,dodge=False,orient=None,color=None,palette=None,size=5,edgecolor=<default>,linewidth=0,hue_norm=None,log_scale=None,native_scale=False,formatter=None,legend='auto',ax=None,**kwargs)",
|
13
|
+
"boxplot": "seaborn.boxplot(data=None,*,x=None,y=None,hue=None,order=None,hue_order=None,orient=None,color=None,palette=None,saturation=0.75,fill=True,dodge='auto',width=0.8,gap=0,whis=1.5,linecolor='auto',linewidth=None,fliersize=None,hue_norm=None,native_scale=False,log_scale=None,formatter=None,legend='auto',ax=None,**kwargs)",
|
14
|
+
"violinplot": "seaborn.violinplot(data=None,*,x=None,y=None,hue=None,order=None,hue_order=None,orient=None,color=None,palette=None,saturation=0.75,fill=True,inner='box',split=False,width=0.8,dodge='auto',gap=0,linewidth=None,linecolor='auto',cut=2,gridsize=100,bw_method='scott',bw_adjust=1,density_norm='area',common_norm=False,hue_norm=None,formatter=None,log_scale=None,native_scale=False,legend='auto',scale=<deprecated>,scale_hue=<deprecated>,bw=<deprecated>,inner_kws=None,ax=None,**kwargs)",
|
15
|
+
"boxenplot": "seaborn.boxenplot(data=None,*,x=None,y=None,hue=None,order=None,hue_order=None,orient=None,color=None,palette=None,saturation=0.75,fill=True,dodge='auto',width=0.8,gap=0,linewidth=None,linecolor=None,width_method='exponential',k_depth='tukey',outlier_prop=0.007,trust_alpha=0.05,showfliers=True,hue_norm=None,log_scale=None,native_scale=False,formatter=None,legend='auto',scale=<deprecated>,box_kws=None,flier_kws=None,line_kws=None,ax=None,**kwargs)",
|
16
|
+
"pointplot": "seaborn.pointplot(data=None,*,x=None,y=None,hue=None,order=None,hue_order=None,estimator='mean',errorbar=('ci',95),n_boot=1000,seed=None,units=None,weights=None,color=None,palette=None,hue_norm=None,markers=<default>,linestyles=<default>,dodge=False,log_scale=None,native_scale=False,orient=None,capsize=0,formatter=None,legend='auto',err_kws=None,ci=<deprecated>,errwidth=<deprecated>,join=<deprecated>,scale=<deprecated>,ax=None,**kwargs)",
|
17
|
+
"barplot": "seaborn.barplot(data=None,*,x=None,y=None,hue=None,order=None,hue_order=None,estimator='mean',errorbar=('ci',95),n_boot=1000,seed=None,units=None,weights=None,orient=None,color=None,palette=None,saturation=0.75,fill=True,hue_norm=None,width=0.8,dodge='auto',gap=0,log_scale=None,native_scale=False,formatter=None,legend='auto',capsize=0,err_kws=None,ci=<deprecated>,errcolor=<deprecated>,errwidth=<deprecated>,ax=None,**kwargs)",
|
18
|
+
"countplot": "seaborn.countplot(data=None,*,x=None,y=None,hue=None,order=None,hue_order=None,orient=None,color=None,palette=None,saturation=0.75,fill=True,hue_norm=None,stat='count',width=0.8,dodge='auto',gap=0,log_scale=None,native_scale=False,formatter=None,legend='auto',ax=None,**kwargs)",
|
19
|
+
"lmplot": "seaborn.lmplot(data,*,x=None,y=None,hue=None,col=None,row=None,palette=None,col_wrap=None,height=5,aspect=1,markers='o',sharex=None,sharey=None,hue_order=None,col_order=None,row_order=None,legend=True,legend_out=None,x_estimator=None,x_bins=None,x_ci='ci',scatter=True,fit_reg=True,ci=95,n_boot=1000,units=None,seed=None,order=1,logistic=False,lowess=False,robust=False,logx=False,x_partial=None,y_partial=None,truncate=True,x_jitter=None,y_jitter=None,scatter_kws=None,line_kws=None,facet_kws=None)",
|
20
|
+
"regplot": "seaborn.regplot(data=None,*,x=None,y=None,x_estimator=None,x_bins=None,x_ci='ci',scatter=True,fit_reg=True,ci=95,n_boot=1000,units=None,seed=None,order=1,logistic=False,lowess=False,robust=False,logx=False,x_partial=None,y_partial=None,truncate=True,dropna=True,x_jitter=None,y_jitter=None,label=None,color=None,marker='o',scatter_kws=None,line_kws=None,ax=None)",
|
21
|
+
"residplot": "seaborn.residplot(data=None,*,x=None,y=None,x_partial=None,y_partial=None,lowess=False,order=1,robust=False,dropna=True,label=None,color=None,scatter_kws=None,line_kws=None,ax=None)",
|
22
|
+
"pairplot": "seaborn.pairplot(data,*,hue=None,hue_order=None,palette=None,vars=None,x_vars=None,y_vars=None,kind='scatter',diag_kind='auto',markers=None,height=2.5,aspect=1,corner=False,dropna=False,plot_kws=None,diag_kws=None,grid_kws=None,size=None)",
|
23
|
+
"jointplot": "seaborn.jointplot(data=None,*,x=None,y=None,hue=None,kind='scatter',height=6,ratio=5,space=0.2,dropna=False,xlim=None,ylim=None,color=None,palette=None,hue_order=None,hue_norm=None,marginal_ticks=False,joint_kws=None,marginal_kws=None,**kwargs)",
|
24
|
+
"plotting_context": "seaborn.plotting_context(context=None,font_scale=1,rc=None)"
|
25
|
+
}
|