Hello,
I’m using my own data as input to build a kriging model. There are three columns for input variables, one column for output variable.
For input, there are:
- day_of_year: transforming the date into the day of year. The date covers more than ten years’ data, so there are repetitive elements in this column
- air_temperature: recording the temperature in the day
- water_depth: water depth for the sensor
For output, I have:
- water_temperature: water temperature detected by the sensor
When I try to build a Kriging surrogate model, it returns an error message as below:
There exists a repetition in the samples, cannot build Kriging.
I try to eliminate repetitive element before creating surrogate model, but this seems useless.
df_train = df_train[:, [:day_of_year, :env_temp_mean, :ts_dpth, :ts_temp]]
df_train = unique(df_train)
Does it means for each columns, there should not be any repetitive element for each columns of input, not for each raw of input? Why there is such limit for Kriging model?