Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用“剪切”命令分析风数据, 我想设置 16 个风向 如何将方向 348.75 到 11.25 剪切为“0”标签? 谢谢埃利亚夫_
有一个很好的circular包可以帮助您处理定向数据。
circular
可能这不是一个通用的临时解决方案,但您可以通过将 360/16/2 添加到方向值来做到这一点:
w<- -15:375 direction<-cut((w+360/16/2)%%360,breaks=seq(0,360,length=17),labels=FALSE)-1