Skip to content

Commit 65c5370

Browse files
committed
more language tweaks
1 parent 654071a commit 65c5370

File tree

9 files changed

+16
-22
lines changed

9 files changed

+16
-22
lines changed

039_facet_example.Rmd

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ title: "Example Faceted Thematic Mapping"
44

55
![](facet_map.png)
66

7-
Ignoring the data wrangling, the faceted map above was created with the following simplified code. See also the [full code](038_facets_wrap_thematic_mapping.html) including wrangling and workflow.
7+
Beyond the the data wrangling, this faceted map was created using the `ggplot2::facet_wrap()` function.
8+
See Also: [full data wrangling code](038_facets_wrap_thematic_mapping.html) and workflow.
89

9-
```{}
10+
```{r eval=FALSE, include=FALSE, echo=TRUE}
1011
sf_data %>%
1112
ggplot(aes(fill = wages, color = wages)) +
1213
geom_sf() +

docs/01_georeference.html

Lines changed: 4 additions & 4 deletions
Large diffs are not rendered by default.

docs/02_choropleth.html

Lines changed: 6 additions & 6 deletions
Large diffs are not rendered by default.

docs/039_facet_example.html

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2114,16 +2114,9 @@ <h1>Example Faceted Thematic Mapping</h1>
21142114

21152115
<div class="d-article">
21162116
<p><img src="facet_map.png" /></p>
2117-
<p>Ignoring the data wrangling, the faceted map above was created with the following simplified code. See also the <a href="038_facets_wrap_thematic_mapping.html">full code</a> including wrangling and workflow.</p>
2118-
<pre><code>sf_data %&gt;%
2119-
ggplot(aes(fill = wages, color = wages)) +
2120-
geom_sf() +
2121-
coord_sf(crs = 5070, datum = NA) +
2122-
scale_fill_viridis_c() +
2123-
scale_color_viridis_c() +
2124-
facet_wrap(~ category,
2125-
nrow = 3, ncol = 2)</code></pre>
2126-
<div class="sourceCode" id="cb2"><pre class="sourceCode r distill-force-highlighting-css"><code class="sourceCode r"></code></pre></div>
2117+
<p>Beyond the the data wrangling, this faceted map was created using the <code>ggplot2::facet_wrap()</code> function.<br />
2118+
See Also: <a href="038_facets_wrap_thematic_mapping.html">full data wrangling code</a> and workflow.</p>
2119+
<div class="sourceCode" id="cb1"><pre class="sourceCode r distill-force-highlighting-css"><code class="sourceCode r"></code></pre></div>
21272120
<!--radix_placeholder_article_footer-->
21282121
<!--/radix_placeholder_article_footer-->
21292122
</div>
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.
-4 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)