We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Integrate GP Regression from GaussianProcesses.jl with CRRao.jl
Ref [1] Fairbrother, Jamie etal, "GaussianProcesses. jl: A Nonparametric Bayes Package for the Julia Language", (2022) Journal of Statistical Software, 102, 1--36,
The possible solution would look like
container = fit(Formula, data::DataFrame, modelClass::GaussianProcessRegression,IndexVar,MeanFunction::MeanZero,kernelClass::Exponential, DistanceClass::Eucledian)
Example
container = fit(y~x1+x2+x3,train_data,z,GaussianProcessRegression(),MeanZero(),Exponential())
Here we are trying to fit y ~ GP(mu(x),Sigma(z)), where z is the index variable or distance would be estimated using z.
y ~ GP(mu(x),Sigma(z))
z
Spatial Statistics
container = fit(y~x1+x2+x3,train_data,s,GaussianProcessRegression(),MeanZero(),Exponential(),EarthDistance())
In the above code s contain lat and lon.
s
lat
lon
The text was updated successfully, but these errors were encountered:
sourish-cmi
No branches or pull requests
Integrate GP Regression from GaussianProcesses.jl with CRRao.jl
Integrate GP Regression from GaussianProcesses.jl with CRRao.jl
Ref
[1] Fairbrother, Jamie etal, "GaussianProcesses. jl: A Nonparametric Bayes Package for the Julia Language", (2022) Journal of Statistical Software, 102, 1--36,
The possible solution would look like
Example
Here we are trying to fit
y ~ GP(mu(x),Sigma(z))
, wherez
is the index variable or distance would be estimated usingz
.Spatial Statistics
In the above code
s
containlat
andlon
.The text was updated successfully, but these errors were encountered: