Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add newline #39

Merged
merged 1 commit into from
Sep 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion episodes/intro-sce.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ Depending on the object, slots can contain different types of data (e.g., numeri

:::: challenge

Try to get the data for 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 assign the sixth sample to `sce6`:
Expand All @@ -140,6 +141,7 @@ sce6 <- WTChimeraData(samples = 6)

sce6
```

:::

::::
Expand Down Expand Up @@ -252,6 +254,7 @@ 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)

Expand All @@ -261,6 +264,7 @@ combined_sce = cbind(sce, sce6)

combined_sce
```

:::


Expand Down
Loading