Skip to content

Commit

Permalink
fix (viz): SE caught typo
Browse files Browse the repository at this point in the history
  • Loading branch information
njlyon0 committed Nov 14, 2024
1 parent 279fb60 commit 4665787
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions _freeze/mod_data-viz/execute-results/html.json

Large diffs are not rendered by default.

Binary file modified _freeze/mod_data-viz/figure-html/multi-modal-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions mod_data-viz.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "Data Visualization & Exploration"
code-annotations: hover
---

## Overview

Data visualization is a fundamental part of working with data. Visualization can be only used in the final stages of a project to make figures for publication but it can also be hugely valuable for quality control and hypothesis development processes. This module focuses on the fundamentals of graph creation in an effort to empower you to apply those methods in the various contexts where you might find visualization to be helpful.
Expand Down Expand Up @@ -618,7 +618,7 @@ grDevices::pdf(file = file.path("qc_all_numeric.pdf")) # <1>
# Loop across numeric variables
for (var in numcols) {
# Create a set of graphs for onevariable
# Create a set of graphs for one variable
myplot <- ggplot(green_biochem, aes(x = date, y = .data[[var]])) +
geom_point(alpha = 0.5) + # <2>
facet_wrap(. ~ local_site)
Expand Down

0 comments on commit 4665787

Please sign in to comment.