我有一個字符串後自動:R:自動換行功能:插入 n每16個字符
str1 <- "aaaaaaaaaa aaaaaaaaaaaaaa aaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaa aaaaaaa aaa aaa"
str1
nchar(str1)
我想插入\ n每16個字符,包括空格後自動,以創建一個用於基本圖形繪圖的換行文本函數。
我想:
str2 <- strwrap(str1, width = 16)
str2
但這並沒有工作
plot(1:10,main=str2)
mtext(str2, side=1, line=0, outer=F,cex=1,col="blue")
而且是有辦法妥善分裂的話,並添加額外的空格必要在適當的自動換行功能。 謝謝你的幫助。
'GSUB( 「({16})。」, 「\\ 1 \ n」,STR1)'。 – nicola
相關http://stackoverflow.com/questions/34710597/justify-text-in-r – rawr