We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88dacd5 commit 6b6984dCopy full SHA for 6b6984d
episodes/01-r-basics.Rmd
@@ -620,17 +620,17 @@ c("ACTN3","APOA5") %in% snp_genes
620
621
> ## Review Exercise 1
622
>
623
-> What data types/modes are the following vectors?
+> What data modes are the following vectors?
624
> a. `snps`
625
> b. `snp_chromosomes`
626
> c. `snp_positions`
627
628
>> ## Solution
629
>>
630
>> ```{r, purl = FALSE}
631
->> typeof(snps)
632
->> typeof(snp_chromosomes)
633
->> typeof(snp_positions)
+>> mode(snps)
+>> mode(snp_chromosomes)
+>> mode(snp_positions)
634
>> ```
635
> {: .solution}
636
{: .challenge}
0 commit comments