Skip to content
Prev 23466 / 29559 Next

Package MODIS error in runMrt( ) and getHdf - 'Problems with online connections try a little later'

good morning friends

Dear : In summary , I have the following problem, I want to validate the
spherical , exponential and gaussian semivariogram models for Which it
has-been made ??a Box - Cox transformation to the original the data. Can
anyone give me an example of how it Should write the script for the
following example xvalid ???

variograma <- variog(D, max.dist=200, uvec=30, lambda=0.14146,
estimator.type="modulus")

ini.vals_amarillo <- expand.grid(seq(0, 120, by=0.25), seq(0, 40, by=0.2))

vario.wls <- variofit(variograma, ini = ini.vals_amarillo, cov.model =
"spherical", fix.nugget = FALSE, nugget = 50, weights = "cressie")

xv.wls <- xvalid(.......................................................)

################################################################################

he probado, pero ninguna de las siguientes lineas ha resultado, enuncio
algunas de ellas:

?################################################################################

xv.wls1 <- xvalid(D, model = vario.wls)

xv.wls1 <- xvalid(D, coords = D$coords, data = D$data, model = vario.wls)

xv.wls1 <- xvalid(D, coords = D$coords, data = D$data+1, model = vario.wls)

xv.wls1 <- xvalid(D, coords = D$coords, data = D$data+1, model = vario.wls,
reestimate=true,   +vario.obj=variograma)

xv.wls1 <- xvalid(D, coords = D$coords, data = D$data+1, model = vario.wls,
reestimate=true,   +vario.obj=variograma), ini = ini.vals_amarillo,
cov.model = "gaussian", fix.nugget = FALSE, nugget = 50, weights =
"cressie")

but does not run properly

#################################################################################

All this led me to the following idea:
#############################################################################################

if transform matrix D ( in other words, the data transformed by boxcox data
= D$data and call the new matrix Dt then :

variograma_t <- variog(Dt, max.dist=200, uvec=30, estimator.type="modulus")
#### LA MATRIZ TRANSFORMADA

It should be the same as:

variograma <- variog(D, max.dist=200, uvec=30, lambda=0.14146,
estimator.type="modulus") # LA MATRIZ ORIGINAL aplicando TRANSFORMACION
BOX-COX

but it turns out not, someone can explain me why ??????



l so that it would expect the following expressions give me the same result:



vario.wls <- variofit(variograma, ini = ini.vals_amarillo, cov.model =
"spherical", fix.nugget = FALSE, nugget = 50, weights = "cressie")

vario.wls_t <- variofit(variograma_t, ini = ini.vals_amarillo, cov.model =
"spherical", fix.nugget = FALSE, nugget = 50, weights = "cressie")



I appreciate any feedback and help


BEST REGARDS


2015-09-30 11:49 GMT-03:00 Marsik,Matthew P <mmarsik at ufl.edu>: