Skip to content

Commit

Permalink
Merge pull request #517 from swirldev/nc/fix-yaml
Browse files Browse the repository at this point in the history
fix yaml issue
  • Loading branch information
ncarchedi authored Mar 23, 2023
2 parents 42323dc + 53dff26 commit 201ccea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@
Output: 'Now, put an exclamation point (!) before is.na() to change all of the TRUEs to FALSEs and all of the FALSEs to TRUEs, thus telling us what is NOT NA: !is.na(c(3, 5, NA, 10)).'
CorrectAnswer: "!is.na(c(3, 5, NA, 10))"
AnswerTests: omnitest('!is.na(c(3, 5, NA, 10))')
Hint: !is.na(c(3, 5, NA, 10)) will negate the previous command, thus telling us what is NOT NA.
Hint: '!is.na(c(3, 5, NA, 10)) will negate the previous command, thus telling us what is NOT NA.'

- Class: cmd_question
Output: 'Okay, ready to put all of this together? Use filter() to return all rows of cran for which r_version is NOT NA. Hint: You will need to use !is.na() as part of your second argument to filter().'
Expand Down

1 comment on commit 201ccea

@RishavDaredevil
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ncarchedi how can i fix this error -

Dplyr lesson : Swirl use obsolete command. tbl_df() is deprecated as of dplyr 1.0.0. Please use tibble::as_tibble() instead

Please sign in to comment.