我无法使用给定变量创建绘图
我是基本的 R 用户。但是,我无法创建显示 weather
数据集每日最低温度(以 F 为单位)的绘图,该数据集在 nycflights13
中给出。我需要使用 str_c
创建一个名为 date
的新列,这样 date
应给出如下“YYYY-MM-DD”。我使用lubridate 包但它给出了错误。
有人对此有解释吗?
I am basic R user.However I cannot create the plot which shows the daily minimum temperature (in F) of the weather
dataset, which is given in nycflights13
. I need tocreate a new column called date
with str_c
, such that date
should be given as follows "YYYY-MM-DD".I use the lubridate package but it gives error.
Someone has explanation for that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
lubridate::make_date
可以解决这个问题。下面是文档。
这也可能会解决您的代码。
lubridate::make_date
can solve the problem.Below is the documentation.
Also this might solve your code.