From 5272ca47ad1716c0d6c70ea4d115044e55eac9d4 Mon Sep 17 00:00:00 2001 From: Steven Lasch <91107394+s-lasch@users.noreply.github.com> Date: Fri, 16 Jun 2023 22:50:36 -0400 Subject: [PATCH] Update density-plot.js Fixed English grammatical errors. --- src/pages/density-plot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/density-plot.js b/src/pages/density-plot.js index 8da0357cf1..ce937cb438 100644 --- a/src/pages/density-plot.js +++ b/src/pages/density-plot.js @@ -15,7 +15,7 @@ import FunctionExploration from '../components/FunctionExploration' import Spacing from "../components/Spacing"; const chartDescription = - "

Density plots allow to visualize the distribution of a numeric variable for one or several groups. They are very well adapted for large dataset, as stated in data-to-viz.com. Note that 2 approaches exist to build them in python: the first one consists in computing a kernel density estimate, the second one in building a high resolution histogram.

"; + "

Density plots allow you to visualize the distribution of a numeric variable for one or several groups. They are very well adapted for large datasets, as stated in data-to-viz.com. Note that 2 approaches exist to build them in python: the first one consists of computing a kernel density estimate, and the second one involves building a high resolution histogram.

"; const quickCode = `# library & dataset import seaborn as sns