不知道如何更改“X5.13.1996”去约会上课吗?
我将日期列为 "X5.13.1996"
,代表 1996 年 5 月 13 日。日期列的类当前是一个字符。
当使用 lubridate
中的 mdy
时,它会不断填充 NA
。是否有一个代码可以用来摆脱 "X"
以成功使用该代码?我还有什么可以做的吗?
I have dates listed as "X5.13.1996"
, representing May 13th, 1996. The class for the date column is currently a character.
When using mdy
from lubridate
, it keeps populating NA
. Is there a code I can use to get rid of the "X"
to successfully use the code? Is there anything else I can do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
substring(date_variable, 2)
删除字符串中的第一个字符。要转换数据框中的变量(即列):
或者,没有
dplyr
:输出:
You can use
substring(date_variable, 2)
to drop the first character from the string.To convert a variable (i.e., column) in your data frame:
or, without
dplyr
:Output: