diff --git a/plotnine/geoms/geom_area.py b/plotnine/geoms/geom_area.py index c71d55f4c..25150898a 100644 --- a/plotnine/geoms/geom_area.py +++ b/plotnine/geoms/geom_area.py @@ -26,7 +26,7 @@ class geom_area(geom_ribbon): See Also -------- - plotnine.geoms.geom_ribbon + plotnine.geom_ribbon """ REQUIRED_AES = {"x", "y"} diff --git a/plotnine/geoms/geom_bar.py b/plotnine/geoms/geom_bar.py index a160fe835..edb425306 100644 --- a/plotnine/geoms/geom_bar.py +++ b/plotnine/geoms/geom_bar.py @@ -26,7 +26,7 @@ class geom_bar(geom_rect): See Also -------- - plotnine.geoms.geom_histogram + plotnine.geom_histogram """ REQUIRED_AES = {"x", "y"} diff --git a/plotnine/geoms/geom_col.py b/plotnine/geoms/geom_col.py index f8629e0d9..ef2edb0dc 100644 --- a/plotnine/geoms/geom_col.py +++ b/plotnine/geoms/geom_col.py @@ -23,7 +23,7 @@ class geom_col(geom_bar): See Also -------- - plotnine.geoms.geom_bar + plotnine.geom_bar """ REQUIRED_AES = {"x", "y"} diff --git a/plotnine/geoms/geom_density.py b/plotnine/geoms/geom_density.py index 6376a052f..0ae32f388 100644 --- a/plotnine/geoms/geom_density.py +++ b/plotnine/geoms/geom_density.py @@ -15,7 +15,7 @@ class geom_density(geom_area): See Also -------- - plotnine.geoms.geom_ribbon + plotnine.geom_ribbon """ DEFAULT_AES = { diff --git a/plotnine/geoms/geom_dotplot.py b/plotnine/geoms/geom_dotplot.py index fca2c1f47..423111c6b 100644 --- a/plotnine/geoms/geom_dotplot.py +++ b/plotnine/geoms/geom_dotplot.py @@ -46,7 +46,7 @@ class geom_dotplot(geom): See Also -------- - plotnine.stats.stat_bindot + plotnine.stat_bindot """ DEFAULT_AES = {"alpha": 1, "color": "black", "fill": "black"} diff --git a/plotnine/geoms/geom_histogram.py b/plotnine/geoms/geom_histogram.py index 3e9a6b36b..20190f7bd 100644 --- a/plotnine/geoms/geom_histogram.py +++ b/plotnine/geoms/geom_histogram.py @@ -15,7 +15,7 @@ class geom_histogram(geom_bar): See Also -------- - plotnine.geoms.geom_bar + plotnine.geom_bar """ DEFAULT_PARAMS = {"stat": "bin", "position": "stack", "na_rm": False} diff --git a/plotnine/geoms/geom_jitter.py b/plotnine/geoms/geom_jitter.py index 71a5dec04..6157bed36 100644 --- a/plotnine/geoms/geom_jitter.py +++ b/plotnine/geoms/geom_jitter.py @@ -38,8 +38,8 @@ class geom_jitter(geom_point): See Also -------- - plotnine.positions.position_jitter - plotnine.geoms.geom_point + plotnine.position_jitter + plotnine.geom_point """ DEFAULT_PARAMS = { diff --git a/plotnine/geoms/geom_label.py b/plotnine/geoms/geom_label.py index 2ec748242..e91c00e18 100644 --- a/plotnine/geoms/geom_label.py +++ b/plotnine/geoms/geom_label.py @@ -75,7 +75,7 @@ class geom_label(geom_text): See Also -------- - plotnine.geoms.geom_text : For documentation of the + plotnine.geom_text : For documentation of the parameters. [](`~matplotlib.patches.BoxStyle`) for the parameters that affect the boxstyle. """ diff --git a/plotnine/geoms/geom_line.py b/plotnine/geoms/geom_line.py index c98bda439..849345a29 100644 --- a/plotnine/geoms/geom_line.py +++ b/plotnine/geoms/geom_line.py @@ -22,7 +22,7 @@ class geom_line(geom_path): See Also -------- - plotnine.geoms.geom_path : For documentation of other parameters. + plotnine.geom_path : For documentation of other parameters. """ def setup_data(self, data: pd.DataFrame) -> pd.DataFrame: diff --git a/plotnine/geoms/geom_path.py b/plotnine/geoms/geom_path.py index 4b43a3685..a60640439 100644 --- a/plotnine/geoms/geom_path.py +++ b/plotnine/geoms/geom_path.py @@ -46,7 +46,7 @@ class geom_path(geom): See Also -------- - plotnine.geoms.geom_path.arrow : for adding arrowhead(s) to paths. + plotnine.arrow : for adding arrowhead(s) to paths. """ DEFAULT_AES = { diff --git a/plotnine/geoms/geom_raster.py b/plotnine/geoms/geom_raster.py index 1c885e021..bf9731720 100644 --- a/plotnine/geoms/geom_raster.py +++ b/plotnine/geoms/geom_raster.py @@ -74,8 +74,8 @@ class geom_raster(geom): See Also -------- - plotnine.geoms.geom_rect - plotnine.geoms.geom_tile + plotnine.geom_rect + plotnine.geom_tile """ DEFAULT_AES = {"alpha": 1, "fill": "#333333"} diff --git a/plotnine/geoms/geom_segment.py b/plotnine/geoms/geom_segment.py index 9420511b5..e9964754c 100644 --- a/plotnine/geoms/geom_segment.py +++ b/plotnine/geoms/geom_segment.py @@ -36,7 +36,7 @@ class geom_segment(geom): See Also -------- - plotnine.geoms.geom_path.arrow : for adding arrowhead(s) to segments. + plotnine.arrow : for adding arrowhead(s) to segments. """ DEFAULT_AES = { diff --git a/plotnine/geoms/geom_sina.py b/plotnine/geoms/geom_sina.py index ef13af270..2684b0de7 100644 --- a/plotnine/geoms/geom_sina.py +++ b/plotnine/geoms/geom_sina.py @@ -20,7 +20,7 @@ class geom_sina(geom_point): See Also -------- - plotnine.stats.stat_sina + plotnine.stat_sina References ---------- diff --git a/plotnine/geoms/geom_spoke.py b/plotnine/geoms/geom_spoke.py index 45b338020..624c18b57 100644 --- a/plotnine/geoms/geom_spoke.py +++ b/plotnine/geoms/geom_spoke.py @@ -24,7 +24,7 @@ class geom_spoke(geom_segment): See Also -------- - plotnine.geoms.geom_segment : For documentation of extra + plotnine.geom_segment : For documentation of extra parameters. """ diff --git a/plotnine/geoms/geom_step.py b/plotnine/geoms/geom_step.py index d079a60a4..0d69976c9 100644 --- a/plotnine/geoms/geom_step.py +++ b/plotnine/geoms/geom_step.py @@ -37,7 +37,7 @@ class geom_step(geom_path): See Also -------- - plotnine.geoms.geom_path : For documentation of extra parameters. + plotnine.geom_path : For documentation of extra parameters. """ DEFAULT_PARAMS = { diff --git a/plotnine/geoms/geom_text.py b/plotnine/geoms/geom_text.py index 0c1e9e94c..0a4901d76 100644 --- a/plotnine/geoms/geom_text.py +++ b/plotnine/geoms/geom_text.py @@ -76,7 +76,7 @@ class geom_text(geom): See Also -------- - plotnine.geoms.geom_label + plotnine.geom_label matplotlib.text.Text matplotlib.patheffects diff --git a/plotnine/geoms/geom_tile.py b/plotnine/geoms/geom_tile.py index 4f1da85eb..2f859bb40 100644 --- a/plotnine/geoms/geom_tile.py +++ b/plotnine/geoms/geom_tile.py @@ -23,7 +23,7 @@ class geom_tile(geom_rect): See Also -------- - plotnine.geoms.geom_rect + plotnine.geom_rect """ DEFAULT_AES = { diff --git a/plotnine/mapping/aes.py b/plotnine/mapping/aes.py index 4cf766ca2..13138d552 100644 --- a/plotnine/mapping/aes.py +++ b/plotnine/mapping/aes.py @@ -202,11 +202,11 @@ class aes(Dict[str, Any]): See Also -------- - plotnine.mapping.after_stat : For how to map aesthetics to variable + plotnine.after_stat : For how to map aesthetics to variable calculated by the stat - plotnine.mapping.after_scale : For how to alter aesthetics after the + plotnine.after_scale : For how to alter aesthetics after the data has been mapped by the scale. - plotnine.mapping.stage : For how to map to evaluate the mapping to + plotnine.stage : For how to map to evaluate the mapping to aesthetics at more than one stage of the plot building pipeline. """ diff --git a/plotnine/mapping/evaluation.py b/plotnine/mapping/evaluation.py index 9cdcd4e00..a8162197c 100644 --- a/plotnine/mapping/evaluation.py +++ b/plotnine/mapping/evaluation.py @@ -82,8 +82,8 @@ def after_stat(x): See Also -------- - plotnine.mapping.after_scale - plotnine.mapping.stage + plotnine.after_scale + plotnine.stage """ return stage(after_stat=x) @@ -102,8 +102,8 @@ def after_scale(x): See Also -------- - plotnine.mapping.after_stat - plotnine.mapping.stage + plotnine.after_stat + plotnine.stage """ return stage(after_scale=x) diff --git a/plotnine/positions/position.py b/plotnine/positions/position.py index 54cc5b0a2..792946a9b 100644 --- a/plotnine/positions/position.py +++ b/plotnine/positions/position.py @@ -94,7 +94,7 @@ def compute_panel( See Also -------- - position_jitter.compute_panel + plotnine.position_jitter.compute_panel """ msg = "{} needs to implement this method" raise NotImplementedError(msg.format(cls.__name__)) diff --git a/plotnine/scales/scale_color.py b/plotnine/scales/scale_color.py index 09339a71e..71c26e7ec 100644 --- a/plotnine/scales/scale_color.py +++ b/plotnine/scales/scale_color.py @@ -180,8 +180,8 @@ class scale_color_gradient(scale_continuous): See Also -------- - plotnine.scales.scale_color_gradient2 - plotnine.scales.scale_color_gradientn + plotnine.scale_color_gradient2 + plotnine.scale_color_gradientn """ _aesthetics = ["color"] @@ -277,8 +277,8 @@ class scale_color_gradient2(scale_continuous): See Also -------- - plotnine.scales.scale_color_gradient - plotnine.scales.scale_color_gradientn + plotnine.scale_color_gradient + plotnine.scale_color_gradientn """ _aesthetics = ["color"] @@ -338,8 +338,8 @@ class scale_color_gradientn(scale_continuous): See Also -------- - plotnine.scales.scale_color_gradient - plotnine.scales.scale_color_gradientn + plotnine.scale_color_gradient + plotnine.scale_color_gradientn """ _aesthetics = ["color"] diff --git a/plotnine/stats/stat_bindot.py b/plotnine/stats/stat_bindot.py index ed427645d..5e6bd618a 100644 --- a/plotnine/stats/stat_bindot.py +++ b/plotnine/stats/stat_bindot.py @@ -68,7 +68,7 @@ class stat_bindot(stat): See Also -------- - plotnine.stats.stat_bin + plotnine.stat_bin """ _aesthetics_doc = """ diff --git a/plotnine/stats/stat_boxplot.py b/plotnine/stats/stat_boxplot.py index 94f12d0aa..a3d4901ad 100644 --- a/plotnine/stats/stat_boxplot.py +++ b/plotnine/stats/stat_boxplot.py @@ -22,7 +22,7 @@ class stat_boxplot(stat): See Also -------- - plotnine.geoms.geom_boxplot + plotnine.geom_boxplot """ _aesthetics_doc = """ diff --git a/plotnine/stats/stat_count.py b/plotnine/stats/stat_count.py index 6ee7d29e3..2a3cd8152 100644 --- a/plotnine/stats/stat_count.py +++ b/plotnine/stats/stat_count.py @@ -23,7 +23,7 @@ class stat_count(stat): See Also -------- - plotnine.stats.stat_bin + plotnine.stat_bin """ _aesthetics_doc = """ diff --git a/plotnine/stats/stat_density.py b/plotnine/stats/stat_density.py index 709682479..6a83c4556 100644 --- a/plotnine/stats/stat_density.py +++ b/plotnine/stats/stat_density.py @@ -80,7 +80,7 @@ class stat_density(stat): See Also -------- - plotnine.geoms.geom_density + plotnine.geom_density statsmodels.nonparametric.kde.KDEUnivariate statsmodels.nonparametric.kde.KDEUnivariate.fit """ diff --git a/plotnine/stats/stat_ecdf.py b/plotnine/stats/stat_ecdf.py index 7feab8d51..9461b7ca9 100644 --- a/plotnine/stats/stat_ecdf.py +++ b/plotnine/stats/stat_ecdf.py @@ -25,7 +25,7 @@ class stat_ecdf(stat): See Also -------- - plotnine.geoms.geom_step + plotnine.geom_step """ _aesthetics_doc = """ diff --git a/plotnine/stats/stat_quantile.py b/plotnine/stats/stat_quantile.py index ffa794eb6..70f355dc4 100644 --- a/plotnine/stats/stat_quantile.py +++ b/plotnine/stats/stat_quantile.py @@ -30,7 +30,7 @@ class stat_quantile(stat): See Also -------- statsmodels.regression.quantile_regression.QuantReg - plotnine.geoms.geom_quantile + plotnine.geom_quantile """ _aesthetics_doc = """ diff --git a/plotnine/stats/stat_sina.py b/plotnine/stats/stat_sina.py index f7aa6c730..8c2638be4 100644 --- a/plotnine/stats/stat_sina.py +++ b/plotnine/stats/stat_sina.py @@ -60,7 +60,7 @@ class stat_sina(stat): See Also -------- - plotnine.geoms.geom_sina + plotnine.geom_sina """ _aesthetics_doc = """ diff --git a/plotnine/stats/stat_summary.py b/plotnine/stats/stat_summary.py index 06e158596..b4822f341 100644 --- a/plotnine/stats/stat_summary.py +++ b/plotnine/stats/stat_summary.py @@ -247,7 +247,7 @@ class stat_summary(stat): See Also -------- - plotnine.geoms.geom_pointrange + plotnine.geom_pointrange """ _aesthetics_doc = """ diff --git a/plotnine/stats/stat_summary_bin.py b/plotnine/stats/stat_summary_bin.py index 5a190c015..fdc413e44 100644 --- a/plotnine/stats/stat_summary_bin.py +++ b/plotnine/stats/stat_summary_bin.py @@ -63,7 +63,7 @@ class stat_summary_bin(stat): See Also -------- - plotnine.geoms.geom_pointrange + plotnine.geom_pointrange """ _aesthetics_doc = """ diff --git a/plotnine/stats/stat_ydensity.py b/plotnine/stats/stat_ydensity.py index eceac0a8a..90fd280dd 100644 --- a/plotnine/stats/stat_ydensity.py +++ b/plotnine/stats/stat_ydensity.py @@ -69,7 +69,7 @@ class stat_ydensity(stat): See Also -------- - plotnine.geoms.geom_violin + plotnine.geom_violin statsmodels.nonparametric.kde.KDEUnivariate statsmodels.nonparametric.kde.KDEUnivariate.fit """