微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

在R中,是否可以在文本段落中调用函数并删除中断?

如何解决在R中,是否可以在文本段落中调用函数并删除中断?

我正在尝试为非R用户编写一个函数,用于以R markdown编写报告。 该函数为宏字符调用unicode。

代码

library(stringr)
library(Unicode)
library(htmltools)
library(cat)

mac <- function(x){
         if (x == "a") {
  result <- "\u101"
  } else if (x == "A") {
  result <- "\u100"
  } else if (x == "e") {
  result <- "\u113"
  } else if (x == "E") {
  result <- "\u112"
  } else if (x == "i") {
  result <- "\u12b"
  } else if (x == "I") {
  result <- "\u12a"
  } else if (x == "o") {
  result <- "\u14d"
  } else if (x == "O") {
  result <- "\u14c"
  } else if (x == "u") {
  result <- "\u16b"
  } else if (x == "U") {
  result <- "\u16a"
  } else (print("Entry not recognised")) 
  
  result = paste0(result,sep = "")

  return(result)
  # return(p(paste0(result,sep = "")))
  
}

我尝试过:

  # gsub("[\r\n]","",result)
  # str_replace_all(x,"[\r\n]","")

没有任何成功-我意识到这是因为要删除函数输出周围没有空格。

例如,我想要这个:

p('Something',mac("a"),'nd something with a macron')

阅读:

有些东西和一个大颗粒一起存在。

解决方法

由于要向p()传递列表,因此得到多行。

如果将文本包装在paste0中,则输出应全部放在一行上。

输入:

p(paste0('Something ',mac("a"),'nd something with a macron'))

输出:

<p>Something ānd something with a macron</p>

显示为:

有些东西和一个大光子

这可以包装为一个函数:

p <- function(...) htmltools::p(paste0(...))

如果您希望用户尝试将列表传递给p(),则可以添加一些内容来处理这些异常。

示例使用的完整代码:

library(stringr)
library(Unicode)
library(htmltools)
library(cat)

mac <- function(x){
    if (x == "a") {
        result <- "\u101"
    } else if (x == "A") {
        result <- "\u100"
    } else if (x == "e") {
        result <- "\u113"
    } else if (x == "E") {
        result <- "\u112"
    } else if (x == "i") {
        result <- "\u12b"
    } else if (x == "I") {
        result <- "\u12a"
    } else if (x == "o") {
        result <- "\u14d"
    } else if (x == "O") {
        result <- "\u14c"
    } else if (x == "u") {
        result <- "\u16b"
    } else if (x == "U") {
        result <- "\u16a"
    } else (print("Entry not recognised")) 
    
    result = paste0(result,sep = "")
    
    return(result)
    # return(p(paste0(result,sep = "")))
    
}

# wrap input in paste0() to create a string then pass to p()
p <- function(...) htmltools::p(paste0(...))

# example use
p('Something ','nd something with a macron')

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。