Skip to content

Commit

Permalink
change the title of the distribution sections
Browse files Browse the repository at this point in the history
  • Loading branch information
Holtz Yan authored and Holtz Yan committed Oct 10, 2023
1 parent ece1f07 commit 682810d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/pages/beeswarm.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ plt.show() # Display the chart

export const Head = () => (
<SEO
title="Beeswarm"
title="Python Beeswarm Gallery | Dozens of examples with code"
seoDescription="A collection of beeswarm chart examples made with Python, coming with explanation and reproducible code"
/>
);
Expand Down
3 changes: 1 addition & 2 deletions src/pages/boxplot.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ sns.boxplot( x=df["species"], y=df["sepal_length"] )

export const Head = () => (
<SEO
title="Boxplot"
title="Python Boxplot Gallery | Dozens of examples with code"
seoDescription="A collection of boxplot examples made with Python, coming with explanation and reproducible code"
/>
);
Expand Down Expand Up @@ -223,7 +223,6 @@ export default function Boxplot() {
linkTo="/509-introduction-to-swarm-plot-in-matplotlib"
/>
<ChartImageContainer

imgName="557-anova-visualization-with-matplotlib-1"
caption="Boxplot and ANOVA results on top"
linkTo="/557-anova-visualization-with-matplotlib"
Expand Down
2 changes: 1 addition & 1 deletion src/pages/density-plot.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ sns.kdeplot(df['sepal_width'])

export const Head = () => (
<SEO
title="Density chart"
title="Python Density Chart Gallery | Dozens of examples with code"
seoDescription="A collection of density plot examples made with Python, coming with explanation and reproducible code"
/>
);
Expand Down
2 changes: 1 addition & 1 deletion src/pages/histogram.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ plt.show

export const Head = () => (
<SEO
title="Histogram"
title="Python Histogram Gallery | Dozens of examples with code"
seoDescription="A collection of histogram examples made with Python, coming with explanation and reproducible code"
/>
);
Expand Down
2 changes: 1 addition & 1 deletion src/pages/ridgeline.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const chartDescription =

export const Head = () => (
<SEO
title="Ridgeline"
title="Python Ridgeline chart Gallery | Dozens of examples with code"
seoDescription="A collection of ridgeline chart examples made with Python, coming with explanation and reproducible code"
/>
);
Expand Down
2 changes: 1 addition & 1 deletion src/pages/violin-plot.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ sns.violinplot(x=df["species"], y=df["sepal_length"])

export const Head = () => (
<SEO
title="Violin plot"
title="Python Violin plot Gallery | Dozens of examples with code"
seoDescription="A collection of violin plot examples made with Python, coming with explanation and reproducible code"
/>
);
Expand Down

0 comments on commit 682810d

Please sign in to comment.