美文网首页R
修改格式的R包

修改格式的R包

作者: 小潤澤 | 来源:发表于2020-03-07 19:59 被阅读0次

    介绍下包名:styler
    这个包最大的功能是调整格式,举个例子:

    install.packages("styler")
    library(styler)
    
    x = 'for (i in 103:204) {if (!is.na(total_ACD_1[i,22])){if(t[i,22] == "A" & t[i,13] < 0.24){
          t[i,23] = round(0.8 - as.numeric(t[i,23],2))
          t[i,24] = c("st")} }}'
    
    style_text(x)
    

    把你写的不规范的地方赋值成字符串
    然后用style_text()来规范写法


    相关文章

      网友评论

        本文标题:修改格式的R包

        本文链接:https://www.haomeiwen.com/subject/wdvhdhtx.html