如何在ggplot中将轴值强制为科学记数法

时间:2017-02-19 03:17:10

标签: r ggplot2

我有以下代码:

myAudio.addEventListener("timeupdate", function() {
  //update something related to playback progress
});

生成此图片:

enter image description here

如上图所示,我该如何更改 y轴值是科学记数法吗?

1 个答案:

答案 0 :(得分:15)

您可以将带有科学记数法的format函数传递给 scale_y_continuous标签参数:

p + scale_y_continuous(labels = function(x) format(x, scientific = TRUE))

enter image description here