krl*_*mlr 4 r data-visualization
有没有办法在R图中为y轴创建多线标签?
我已经尝试添加\n换行符所在的位置,但随后标签的第一行被剪切:
l <- 10
plot(0:l, (0:l), type='l',
yaxt='n',
xlab='Index',
ylab='Cumulative sum\nof the sorted weights')
Run Code Online (Sandbox Code Playgroud)

tikzDeviceRStudio内部和内部都会发生这种情况.此外,我尝试了一些par()没有运气的选项.怎么做得好?
(超大的超额利润也困扰着我......)
您需要使用mar或设置边距mgp:
l <- 10
op <- par(mar=c(5, 6, 4, 2) + 0.1)
plot(0:l, (0:l), type='l',
yaxt='n',
xlab='Index',
ylab='Cumulative sum\nof the sorted weights')
par(op)
Run Code Online (Sandbox Code Playgroud)
