Skip to content

Commit 0209571

Browse files
committed
add link to the radar chart from the web
1 parent 496e573 commit 0209571

8 files changed

+103
-3
lines changed

src/pages/boxplot.js

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import Row from "react-bootstrap/Row";
77
import ChartImageContainer from "../components/ChartImageContainer";
88
import ChartFamilySection from "../components/ChartFamilySection";
99
import { Link } from "gatsby";
10-
import { Seaborn } from "../components/MiscellaneousLogos"
10+
import { Matplotlib, Seaborn } from "../components/MiscellaneousLogos"
1111
import { Button, Col } from "react-bootstrap";
1212
import CodeChunk from "../components/CodeChunk"
1313
import ChartImage from "../components/ChartImage";
@@ -158,6 +158,26 @@ export default function Boxplot() {
158158

159159
<Spacing />
160160

161+
<Container>
162+
<h2 id="From the web"><Matplotlib />From the web</h2>
163+
<p>The web is full of astonishing charts made by awesome bloggers, (often
164+
using <a href="https://www.r-graph-gallery.com">R</a>).
165+
The <a href="https://www.python-graph-gallery.com">Python graph gallery</a> tries to
166+
display (or translate from R) some of the best creations and explain how their source
167+
code works. If you want to display your work here, please drop me a word or
168+
even better, submit a <a href="https://github.com/holtzy/The-Python-Graph-Gallery">Pull Request</a>!
169+
</p>
170+
<Row>
171+
<Col xs={12} md={6}>
172+
<Link to={"/web-ggbetweenstats-with-matplotlib"}>
173+
<ChartImage imgName={"web-ggbetweenstats-with-matplotlib-square"} caption={"A combination of a violin plot and a boxplot. Allows the comparison of several groups with statistical test results on top."} />
174+
</Link>
175+
</Col>
176+
</Row>
177+
</Container>
178+
179+
<Spacing />
180+
161181
<div className="greySection" id="related">
162182
<Container>
163183
<ChartFamilySection chartFamily="distribution" />

src/pages/connected-scatter-plot.js

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,26 @@ export default function ConnectedScatter() {
144144

145145
<Spacing />
146146

147+
<Container>
148+
<h2 id="From the web"><Matplotlib />From the web</h2>
149+
<p>The web is full of astonishing charts made by awesome bloggers, (often
150+
using <a href="https://www.r-graph-gallery.com">R</a>).
151+
The <a href="https://www.python-graph-gallery.com">Python graph gallery</a> tries to
152+
display (or translate from R) some of the best creations and explain how their source
153+
code works. If you want to display your work here, please drop me a word or
154+
even better, submit a <a href="https://github.com/holtzy/The-Python-Graph-Gallery">Pull Request</a>!
155+
</p>
156+
<Row>
157+
<Col xs={12} md={6}>
158+
<Link to={"/web-text-repel-with-matplotlib"}>
159+
<ChartImage imgName={"web-text-repel-with-matplotlib-square"} caption={"Learn how to use the adjustText library to add many labels with no overlaps."} />
160+
</Link>
161+
</Col>
162+
</Row>
163+
</Container>
164+
165+
<Spacing />
166+
147167
<div className="greySection" id="related">
148168
<Container>
149169
<ChartFamilySection chartFamily="correlation" />

src/pages/parallel-plot.js

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import Row from "react-bootstrap/Row";
77
import ChartImageContainer from "../components/ChartImageContainer";
88
import ChartFamilySection from "../components/ChartFamilySection";
99
import { Link } from "gatsby";
10-
import { Animation } from "../components/MiscellaneousLogos"
10+
import { Animation, Matplotlib } from "../components/MiscellaneousLogos"
1111
import { Button, Col } from "react-bootstrap";
1212
import ChartImage from "../components/ChartImage";
1313
import CodeChunk from "../components/CodeChunk";
@@ -93,6 +93,26 @@ export default function Parallel() {
9393

9494
<Spacing />
9595

96+
<Container>
97+
<h2 id="From the web"><Matplotlib />From the web</h2>
98+
<p>The web is full of astonishing charts made by awesome bloggers, (often
99+
using <a href="https://www.r-graph-gallery.com">R</a>).
100+
The <a href="https://www.python-graph-gallery.com">Python graph gallery</a> tries to
101+
display (or translate from R) some of the best creations and explain how their source
102+
code works. If you want to display your work here, please drop me a word or
103+
even better, submit a <a href="https://github.com/holtzy/The-Python-Graph-Gallery">Pull Request</a>!
104+
</p>
105+
<Row>
106+
<Col xs={12} md={6}>
107+
<Link to={"/web-radar-chart-with-matplotlib"}>
108+
<ChartImage imgName={"web-radar-chart-with-matplotlib-square"} caption={"A radar chart can be an alternative to a parallel coordinate plot."} />
109+
</Link>
110+
</Col>
111+
</Row>
112+
</Container>
113+
114+
<Spacing />
115+
96116
<div className="greySection" id="related">
97117
<Container>
98118
<ChartFamilySection chartFamily="ranking" />

src/pages/radar-chart.js

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,26 @@ export default function Radar() {
100100

101101
<Spacing />
102102

103+
<Container>
104+
<h2 id="From the web"><Matplotlib />From the web</h2>
105+
<p>The web is full of astonishing charts made by awesome bloggers, (often
106+
using <a href="https://www.r-graph-gallery.com">R</a>).
107+
The <a href="https://www.python-graph-gallery.com">Python graph gallery</a> tries to
108+
display (or translate from R) some of the best creations and explain how their source
109+
code works. If you want to display your work here, please drop me a word or
110+
even better, submit a <a href="https://github.com/holtzy/The-Python-Graph-Gallery">Pull Request</a>!
111+
</p>
112+
<Row>
113+
<Col xs={12} md={6}>
114+
<Link to={"/web-radar-chart-with-matplotlib"}>
115+
<ChartImage imgName={"web-radar-chart-with-matplotlib-square"} caption={"An appealing radar chart with several groups to compare some penguins populations ."} />
116+
</Link>
117+
</Col>
118+
</Row>
119+
</Container>
120+
121+
<Spacing />
122+
103123
<div className="greySection" id="related">
104124
<Container>
105125
<ChartFamilySection chartFamily="ranking" />

src/pages/violin-plot.js

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import Row from "react-bootstrap/Row";
77
import ChartImageContainer from "../components/ChartImageContainer";
88
import ChartFamilySection from "../components/ChartFamilySection";
99
import { Link } from "gatsby";
10-
import { Seaborn } from "../components/MiscellaneousLogos"
10+
import { Matplotlib, Seaborn } from "../components/MiscellaneousLogos"
1111
import { Col } from "react-bootstrap";
1212
import CodeChunk from "../components/CodeChunk"
1313
import ChartImage from "../components/ChartImage";
@@ -118,6 +118,26 @@ export default function ViolinPlot() {
118118

119119
<Spacing />
120120

121+
<Container>
122+
<h2 id="From the web"><Matplotlib />From the web</h2>
123+
<p>The web is full of astonishing charts made by awesome bloggers, (often
124+
using <a href="https://www.r-graph-gallery.com">R</a>).
125+
The <a href="https://www.python-graph-gallery.com">Python graph gallery</a> tries to
126+
display (or translate from R) some of the best creations and explain how their source
127+
code works. If you want to display your work here, please drop me a word or
128+
even better, submit a <a href="https://github.com/holtzy/The-Python-Graph-Gallery">Pull Request</a>!
129+
</p>
130+
<Row>
131+
<Col xs={12} md={6}>
132+
<Link to={"/web-ggbetweenstats-with-matplotlib"}>
133+
<ChartImage imgName={"web-ggbetweenstats-with-matplotlib-square"} caption={"A combination of a violin plot and a boxplot. Allows the comparison of several groups with statistical test results on top."} />
134+
</Link>
135+
</Col>
136+
</Row>
137+
</Container>
138+
139+
<Spacing />
140+
121141
<div className="greySection" id="related">
122142
<Container>
123143
<ChartFamilySection chartFamily="distribution" />

static/.DS_Store

0 Bytes
Binary file not shown.
77.2 KB
Loading
58.9 KB
Loading

0 commit comments

Comments
 (0)