Skip to content

Commit

Permalink
Update r-quiz.md (Ebazhanov#2673)
Browse files Browse the repository at this point in the history
  • Loading branch information
cccppp1 authored Nov 24, 2021
1 parent 90475fb commit 8a6f64b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions r/r-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -399,13 +399,13 @@ StDf[, -1]

- [ ] file.list()
- [ ] file.select()
- [ ] file.choose()
- [x] file.choose()
- [ ] file.open()

#### Q41. How are these data types alike: logical, integer, numeric, and character?

- [ ] Each is a type of data frame.
- [ ] Each is a type of atomic vector.
- [x] Each is a type of atomic vector.
- [ ] Each is a type of complex vector.
- [ ] Each is a type of raw vector.

Expand All @@ -423,7 +423,7 @@ MyMat = matrix(c(7, 9, 8, 6, 10, 12),nrow=2,ncol=3, byrow = TRUE)
[2, ] 12
```

- [ ]
- [x]

```
[1] 8 12
Expand All @@ -446,7 +446,7 @@ MyMat = matrix(c(7, 9, 8, 6, 10, 12),nrow=2,ncol=3, byrow = TRUE)
#### Q43. What does the function `power.anova.test` return?

- [ ] the probability of making a Type I error
- [ ] the probability of not making a Type II error
- [x] the probability of not making a Type II error
- [ ] the probability of making a Type II error
- [ ] the probability of not making a Type I error

Expand All @@ -465,12 +465,12 @@ result <- lm(outcome ~ covariate + factor + covariate:factor, data = testcoef)

- [ ] integers and real values
- [ ] integers, real, and raw values
- [ ] real values only
- [x] real values only
- [ ] integers, real, and logical values

#### Q46. What is the legitimate name of a data class in R?

- [ ] property
- [ ] integer
- [x] integer
- [ ] number
- [ ] variant

0 comments on commit 8a6f64b

Please sign in to comment.