How to use a non-ASCII symbol (e.g. £) in an R package function?

后端 未结 2 1857
后悔当初
后悔当初 2020-12-17 17:21

I have a simple function in one of my R packages, with one of the arguments symbol = \"£\":

formatPound <- function(x, digits = 2, nsmall = 2         


        
2条回答
  •  隐瞒了意图╮
    2020-12-17 17:49

    Looks like "Writing R Extensions" covers this in Section 1.7.1 "Encoding Issues".


    One of the recommendations in this page is to use the Unicode encoding \uxxxx. Since £ is Unicode 00A3, you can use:

    formatPound <- function(x, digits=2, nsmall=2, symbol="\u00A3"){
      paste(symbol, format(x, digits=digits, nsmall=nsmall))
    }
    
    
    formatPound(123.45)
    [1] "£ 123.45"
    

提交回复
热议问题