How to create a time scatterplot with R?

前端 未结 2 622
轻奢々
轻奢々 2021-02-03 12:33

The data are a series of dates and times.

date time
2010-01-01 09:04:43
2010-01-01 10:53:59
2010-01-01 10:57:18
2010-01-01 10:59:30
2010-01-01 11:00:44
…
         


        
2条回答
  •  一向
    一向 (楼主)
    2021-02-03 13:14

    I'd start by reading about as.POSIXct, strptime, strftime, and difftime. These and related functions should allow you to extract the desired subsets of your data. The formatting is a little tricky, so play with the examples in the help files.
    And, once your dates are converted to a POSIX class, as.numeric() will convert them all to numeric values, hence easy to sort, plot, etc.

    Edit: Andre's suggestion to play w/ ggplot to simplify your axis specifications is a good one.

提交回复
热议问题