1
如何手動調整地層圖中特定面板的x軸基線位置?在地層圖上更改基線位置
例如,這裏的Stratiplot從模擬:
library(analogue)
data(V12.122)
Depths <- as.numeric(rownames(V12.122))
(plt <- Stratiplot(Depths ~ O.univ + G.ruber + G.tenel + G.pacR,
data = V12.122, type = c("h","l","g","smooth")))
我如何可以設置面板G.麴黴的基準,以便它被設置爲0.4,而不是0,因爲我們看到上面的情節?
這意味着條起始於0.4,值> 0.4將在基線右側,並且值< 0.4將落在基線左側。
可能相關的:Change x-axis limits on stratigraphic plots (ie. multi-panel plots)
非常感謝,這正是我所需要的。 – Ben