Skip to content

Commit 9d478fd

Browse files
authored
Replace pizza with pizza_price
The dataset is called pizza_price and not just pizza
1 parent 957a94f commit 9d478fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

episodes/04-data-structures-part1.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -701,13 +701,13 @@ You get the names of an object by wrapping the object name inside
701701
wrapping the whole code in `typeof(...)`:
702702

703703
```
704-
typeof(names(pizza))
704+
typeof(names(pizza_price))
705705
```
706706

707707
alternatively, use a new variable if this is easier for you to read:
708708

709709
```
710-
n <- names(pizza)
710+
n <- names(pizza_price)
711711
typeof(n)
712712
```
713713

0 commit comments

Comments
 (0)