我有这个深度与时间的图: 这个图在五月初有一个奇怪的差距。
我检查了数据,但没有 NAs 或 Nans 或没有丢失数据。这是一个以 15 分钟为间隔的时间序列
我不能在这里给出数据集,因为它包含 10,000 行。有人可以提出建议吗?
我正在使用以下绘图代码:
library(zoo)
z=read.zoo("data.txt", header=TRUE)
temp=index(z[,1])
m=coredata(z[,1])
x=0.001
p=rep.int(x,length(temp))
png(filename=paste(Name[k],"_mean1.png", sep=''), width= 3500, height=1600, units="px")
par(mar=c(13,13,5,3),cex.axis= 2.5, cex.lab=3, cex.main=3.5, cex.sub=5)
plot(temp,m, xlab="Time", ylab="Depth",type='l', main=Name[k])
symbols(temp,m,add=TRUE,circles=p, inches=1/15, ann=F, bg="steelblue2", fg=NULL)
dev.off()