请对下列代码的错误进行修正:plot(Results1, "edgeWeight", plot = "difference", order ="sample")
时间: 2023-09-06 10:13:33 浏览: 75
plot的两个曲线比较差值.m
这段代码的错误在于参数名`plot`应该为`type`。同时,`order`参数应该为`sample.order`。
下面是修改后的代码:
```R
plot(Results1, "edgeWeight", type = "difference", sample.order = "sample")
```
阅读全文