我正在尝试使用以下标签标记情节:
“Some Assay EC50 (uM)”,其中“u”是一个微型符号。
我目前有:
assay <- "Some Assay"
plot(0,xlab=expression(paste(assay," AC50 (",mu,"M)",sep="")))
但这给出了:“测定 EC50 (uM)”而不是所需的“某些测定 EC50 (uM)”。
建议?谢谢。
我也试过:
paste(assay,expression(paste(" AC50 (",mu,"M)",sep="")),sep="")