Social Sciences, asked by rahul120506, 10 months ago

what would be time at R​

Attachments:

Answers

Answered by Rosielyn120
0

Answer:

R provides several options for dealing with date and date/time data. The builtin as.Date function handles dates (without times); the contributed library chron handles dates and times, but does not control for time zones; and the POSIXct and POSIXlt classes allow for dates and times with control for time zones. The general rule for date/time data in R is to use the simplest technique possible. Thus, for date only data, as.Date will usually be the best choice. If you need to handle dates and times, without timezone information, the chron library is a good choice; the POSIX classes are especially useful when timezone manipulation is important. Also, don't overlook the various "as." functions (see Section ) for converting among the different date types when necessary.

Explanation:

Similar questions