Skip to content

Commit

Permalink
fix small problem in dates and times lesson
Browse files Browse the repository at this point in the history
  • Loading branch information
ncarchedi committed Aug 11, 2014
1 parent 98a487d commit 4444333
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R_Programming/Dates_and_Times/lesson.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@
Hint: Store "October 17, 1986 08:24" (including the quotes) in a new variable called t3.

- Class: cmd_question
Output: 'Now, use strptime(t3, "%B %d, %Y %H:%M") to help R convert our date/time object to a format that it understands. Assign the result to a new variable called t4. (You should pull up the documentation for strptime() if you'd like to know more about how it works.)'
Output: 'Now, use strptime(t3, "%B %d, %Y %H:%M") to help R convert our date/time object to a format that it understands. Assign the result to a new variable called t4. (You should pull up the documentation for strptime() if you''d like to know more about how it works.)'
CorrectAnswer: t4 <- strptime(t3, "%B %d, %Y %H:%M")
AnswerTests: omnitest(correctExpr='t4 <- strptime(t3, "%B %d, %Y %H:%M")')
Hint: 't4 <- strptime(t3, "%B %d, %Y %H:%M") will convert our date/time object to a format that R understands.'
Expand Down

0 comments on commit 4444333

Please sign in to comment.