Skip to content

Commit

Permalink
Update 01-r-basics.Rmd
Browse files Browse the repository at this point in the history
fixes part of #142
  • Loading branch information
poterlowicz-lab committed Jan 11, 2023
1 parent 88dacd5 commit 6b6984d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions episodes/01-r-basics.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -620,17 +620,17 @@ c("ACTN3","APOA5") %in% snp_genes

> ## Review Exercise 1
>
> What data types/modes are the following vectors?
> What data modes are the following vectors?
> a. `snps`
> b. `snp_chromosomes`
> c. `snp_positions`
>
>> ## Solution
>>
>> ```{r, purl = FALSE}
>> typeof(snps)
>> typeof(snp_chromosomes)
>> typeof(snp_positions)
>> mode(snps)
>> mode(snp_chromosomes)
>> mode(snp_positions)
>> ```
> {: .solution}
{: .challenge}
Expand Down

0 comments on commit 6b6984d

Please sign in to comment.