简体   繁体   中英

text alignment with textplot() (PerformanceAnalytics package)

I would like to align text in a table using textplot(). Here's my code:

liste<-list(1,2)
tabindex<-data.frame(liste)
colnames(tabindex)<-c("Abreviation","Definition")
tabindex[1,]<-c("SAI : ","Strategy AI : stock's weight depending on AI")
tabindex<-rbind(tabindex,"")
tabindex[2,]<-c("SBH : ","Strategy BH : constant stock's weight")
textplot(tabindex,hadj=0,cex=0.8)

How can I align a text properly (in any direction) in each column?

If you modify your textplot call, is this what you want?

textplot(tabindex, halign="left", valign="center", cmar = 0.5, cex=0.8)

在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM