Putting greek letters in column names

a 夏天 提交于 2019-12-12 15:22:08

问题


Is there any way to include Greek letters (α,β,γ) into column names of a matrix? i know you use :

colnames()<-c("column 1","column 2","column 3".....)

to add column names but when i tried to paste in the letters...

colnames(mymatrix)<-c("random name","parameters(α,β,γ)","parameters2(α,β,γ)")

it shows the "(α,β,γ)" as "(??,??,??)"

Does anyone know how to do this as i need it to be really obvious for reports at work

来源:https://stackoverflow.com/questions/26179741/putting-greek-letters-in-column-names

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!