Skip to content

Commit

Permalink
remove need to reassign
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewGhazi committed Sep 16, 2024
1 parent 883adf7 commit b950951
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions episodes/intro-sce.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -130,16 +130,16 @@ Depending on the object, slots can contain different types of data (e.g., numeri

:::: challenge

Try to extract a different sample from `WTChimeraData` (other than the fifth one)
Try to get the data for a different sample from `WTChimeraData` (other than the fifth one)
::: solution
Here we extract the sixth sample:

Here we assign the sixth sample to `sce6`:

```{r, message = FALSE, warning=FALSE, eval=FALSE}
sce <- WTChimeraData(samples = 6)
sce6 <- WTChimeraData(samples = 6)
sce
sce6
```

We'll keep using the fifth sample for the rest of this exercise, so if you ran that, re-run `sce <- WTChimeraData(samples = 5)` so that your answers align with what's shown below.
:::

::::
Expand Down

0 comments on commit b950951

Please sign in to comment.