Displaying 1 result from an estimated 1 matches for "r_hk_krig_file_log".
2009 Jan 29
0
assign point values as labels in spplot
..., I simply cannot get the black
points ("+") to display the actual value. I'm guessing the problem is
somewhere in the second to last line of code (starts with "pts<-..."). I
have attached the two text files needed to run the code.
http://www.nabble.com/file/p21734824/R_Hk_Krig_File_Log.txt
R_Hk_Krig_File_Log.txt
http://www.nabble.com/file/p21734824/Predict_Location_XY.txt
Predict_Location_XY.txt
Eric
library(gstat)
K.dat<-read.table("C:/temp/R_Hk_Krig_File_Log.txt", header = TRUE)
my.dat<-data.frame(K.dat)
attach(my.dat)
coordinates(my.dat)=~X+Y
pred.dat<-...