Skip to content

Commit

Permalink
Merge pull request #29 from ccb-hms/add_exercises
Browse files Browse the repository at this point in the history
solns to end exercises
  • Loading branch information
andrewGhazi authored Sep 9, 2024
2 parents 286327c + 828d67f commit 1ae279e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions episodes/intro-sce.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -245,13 +245,15 @@ my_sce

Combining two objects: The `MouseGastrulationData` package contains several datasets. Download sample 6 of the chimera experiment by running `sce6 <- WTChimeraData(samples=6)`. Use the `cbind` function to combine the new data with the `sce` object created before.

::: solution
```{r message = FALSE, warning=FALSE}
sce <- WTChimeraData(samples = 5)
sce6 <- WTChimeraData(samples = 6)
combined_sce = cbind(sce, sce6)
combined_sce
```
:::


:::::::::::::::::::::::::::::::::::::::::::::
Expand Down

0 comments on commit 1ae279e

Please sign in to comment.