Bolding Greek letters in R

前端 未结 1 1935
走了就别回头了
走了就别回头了 2021-01-23 04:05

I want to add a greek letter to my the margin of a figure, and I used the line of code below:

mtext(side=2,line=6,text=expression(paste(beta,\"-Actin Normalize         


        
相关标签:
1条回答
  • 2021-01-23 04:20

    You can use the bold plotmath function:

    expression(bold(paste(beta,"-Actin Normalized")))
    

    And before you ask for bold(beta) you should read this information from Prof Ripley on Rhelp

    0 讨论(0)
提交回复
热议问题