SlideShare uma empresa Scribd logo
1 de 1
Baixar para ler offline
Support
We are grateful to Dr. Gerard Heuvelink, from ISRIC – World Soil Information, for his comments during the
development of this work. The first author was supported by the CAPES Foundation, Ministry of Education of
Brazil (Process BEX 11677/13-9), and by the CNPq Foundation, Ministry of Science and Technology of Brazil
Technology of Brazil (Process 480515/2013-1).
Pedometrics 2015
14 – 18 September 2015
Faculty of Labour Sciences, Avenida de Ollerías 2
Córdoba, Spain (37.891586, -4.777202)
Optimization of Sample Configurations for Spatial Trend Estimation
Alessandro Samuel-Rosa(1)
, Dick J Brus(2)
, Gustavo M Vasques(3)
, Lúcia H C Anjos(1)
(1) Universidade Federal Rural do Rio de Janeiro, Brazil (alessandrosamuelrosa@gmail.com, lanjos@ufrrj.br); (2) Alterra, Wageningen University and Research Centre, the
Netherlands (dick.brus@wur.nl); (3) Embrapa Soils, Brazil (gustavo.vasques@embrapa.br).
Introduction
The spatial trend corresponds to the spatial variation of Z(s) that is explained linearly or non-linearly by the
covariates. There are various methods to design samples for spatial trend estimation. One of the most used in soil
science, the so-called conditioned Latin Hypercube Sampling (cLHS) (Minasny & McBratney, 2006), searches for a
spatial sample optimal in terms of
1) coverage of the marginal distribution of numeric covariates,
2) linear correlation of numeric covariates, and
3) proportional sample sizes for the classes of factor covariates.
The idea is that with such a sample we can identify the “true” spatial trend if we are ignorant about its form. We
propose to improve on the existing cLHS and present our implementation in the R-package spsann.
Measuring the Association Between Factor Covariates
Like the cLHS, our implementation it is based on solving a multi-objective optimization problem (MOOP)
using spatial simulated annealing. But instead of three, we define two objective functions. As such, we redefine the
optimization criterion as the reproduction of an Association/Correlation measure and the marginal Distribution of
the Covariates (ACDC).
This is because the cLHS ignores the association among factor covariates and among factor and numeric
covariates. We propose to use the Pearson's r (correlation) only when all covariates are numeric, and the Cramér's V
(association) when some or all covariates are factors. In the latter case any numeric covariate is transformed to a
factor covariate, with the factor levels defined by the marginal sampling strata.
where r and c are the number of rows and columns of the contingency table, n is the number of observations, and χ2
is the chi-squared statistic
where Oi
and Ei
are the observed and expected frequency, respectively (Cramer, 1946).
Defining the Marginal Sampling Strata
The cLHS uses quantiles to create equal-area marginal sampling strata. Depending on the number of marginal
strata, this may produce replicated breakpoints in regions with a relatively high frequency of covariate values.
R> # Replicated breakpoints
R> sample_size <- 5
R> covariate <- c(1, 5, 1, 3, 4, 1, 2, 3, 2, 1, 8, 9, 9, 9, 9)
R> probs <- seq(0, 1, length.out = sample_size + 1)
R> breaks <- quantile(covariate, probs, na.rm = TRUE)
R> breaks
0% 20% 40% 60% 80% 100%
1.0 1.0 2.6 4.4 9.0 9.0
The presence of replicated breakpoints prevents the optimization algorithm from converging to the optimum. We
propose defining marginal sampling strata using only the unique values of the sample quantiles estimated with a
discontinuous function (Hyndman & Fan, 1996). This avoids creating empty marginal strata.
R> # Unique breakpoints
R> breaks <- quantile(covariate, probs, na.rm = TRUE, type = 3)
R> breaks <- unique(breaks)
R> breaks
[1] 1 2 4 9
This approach results in each numeric covariate having a different number of quasi-equal-size sampling strata.
The number of sample points that should fall in each marginal sampling stratum is proportional to the number of
sampling units in that stratum.
R> # Number of points per strata
R> count <- hist(covariate, breaks, plot = FALSE)$counts
R> count <- count / sum(count) * sample_size
R> count
[1] 2 1 2
Avoiding Numerical Dominance
We also solve the MOOP aggregating the objective functions into a single utility function using a weighted
sum, the weights defining the relative importance of each objective function:
where w is a vector of positive weights that sum to unity, k being the number of objective functions (Marler &
Arora, 2009). The improvement is that the objective functions are first scaled to the same approximate range of
values using the upper-lower bound approach with the Pareto maximum (and minimum):
where xj
*
is the point that minimizes the jth objective function, a vertex of the Pareto optimal set in the design space
(Marler & Arora, 2005).
Using the Pareto maximum (and minimum) avoids the numerical dominance (bias) of any objective function
such as occurs with the first objective function (O1
) of the cLHS that yields criterion values much larger than the
second (O2
) and third (O3
). The numerical dominance occurs because O1
uses the number of points per strata (0 to
n), while O2
uses the proportion of points per strata (0 to 1) and O3
uses the linear correlation coefficient (-1 to 1).
V=
√ χ2
/n
min(c−1,r−1)
χ
2
=
∑i=1
r
∑j=1
c
(Oi−Ei)
2
Ei
U =∑i=1
k
wi f i(x)
f i
max
=max1≤j≤k f i(x j
∗
) References
Cramér, H. Mathematical methods of statistics. Princeton: Princeton University Press, p. 575, 1946.
Hyndman, R. J. & Fan, Y. Sample quantiles in statistical packages. The American Statistician, v. 50, p. 361-365,
1996.
Marler, R. T. & Arora, J. S. Function-transformation methods for multi-objective optimization. Engineering
Optimization, v. 37, p. 551-570, 2005.
Marler, R. T. & Arora, J. S. The weighted sum method for multi-objective optimization: new insights. Structural
and Multidisciplinary Optimization, v. 41, p. 853-862, 2009.
Minasny, B. & McBratney, A. B. A conditioned Latin hypercube method for sampling in the presence of ancillary
information. Computers & Geosciences, v. 32, p. 1378-1388, 2006.
Preliminary Results
Our preliminary results indicated that sampling distributions derived using our algorithm varied very little from
the same set of covariates, indicating that the criterion approaches the global optimum.
An in-depth study is being carried out to evaluate how our implementation performs compared to the original
cLHS method (and other sample designs as well). Using simulated data, we will evaluate their ability to capture the
true form of the spatial trend (linear and non-linear) and make accurate predictions.
Acknowledgements
We are grateful to Dr. Gerard Heuvelink, from ISRIC – World Soil Information, for his comments during the
development of this work. The first author was supported by the CAPES Foundation, Ministry of Education of
Brazil (Process BEX 11677/13-9), and by the CNPq Foundation, Ministry of Science and Technology of Brazil
(Process 140720/2012-0). The last author was supported by the CNPq Foundation, Ministry of Science and
Technology of Brazil (Process 480515/2013-1).
Student
Presentation

Mais conteúdo relacionado

Mais procurados

SURF_Poster_REU2016Team1
SURF_Poster_REU2016Team1SURF_Poster_REU2016Team1
SURF_Poster_REU2016Team1Mathew Prindle
 
MATLAB review questions 2014 15
MATLAB review questions 2014 15MATLAB review questions 2014 15
MATLAB review questions 2014 15chingtony mbuma
 
Computing and Data Analysis for Environmental Applications
Computing and Data Analysis for Environmental ApplicationsComputing and Data Analysis for Environmental Applications
Computing and Data Analysis for Environmental ApplicationsStatistics Assignment Help
 
2.9 graphs of factorable rational functions t
2.9 graphs of factorable rational functions t2.9 graphs of factorable rational functions t
2.9 graphs of factorable rational functions tmath260
 
rational expression
rational expressionrational expression
rational expressionrey castro
 
3.5 3.6 exp-log models 13-14
3.5 3.6  exp-log models 13-143.5 3.6  exp-log models 13-14
3.5 3.6 exp-log models 13-14Sharon Henry
 
Inequalties Of Combined Functions2[1]
Inequalties Of Combined Functions2[1]Inequalties Of Combined Functions2[1]
Inequalties Of Combined Functions2[1]guestf0cee6
 
A NEW STUDY OF TRAPEZOIDAL, SIMPSON’S1/3 AND SIMPSON’S 3/8 RULES OF NUMERICAL...
A NEW STUDY OF TRAPEZOIDAL, SIMPSON’S1/3 AND SIMPSON’S 3/8 RULES OF NUMERICAL...A NEW STUDY OF TRAPEZOIDAL, SIMPSON’S1/3 AND SIMPSON’S 3/8 RULES OF NUMERICAL...
A NEW STUDY OF TRAPEZOIDAL, SIMPSON’S1/3 AND SIMPSON’S 3/8 RULES OF NUMERICAL...mathsjournal
 
PartOne
PartOnePartOne
PartOne?? ?
 
A tour in optimal transport
A tour in optimal transportA tour in optimal transport
A tour in optimal transportMichiel Stock
 
Permutation graphsandapplications
Permutation graphsandapplicationsPermutation graphsandapplications
Permutation graphsandapplicationsJoe Krall
 
Inequalties Of Combined Functions2[1]
Inequalties Of Combined Functions2[1]Inequalties Of Combined Functions2[1]
Inequalties Of Combined Functions2[1]guestf0cee6
 

Mais procurados (20)

SURF_Poster_REU2016Team1
SURF_Poster_REU2016Team1SURF_Poster_REU2016Team1
SURF_Poster_REU2016Team1
 
978 1-4612-4974-0 26
978 1-4612-4974-0 26978 1-4612-4974-0 26
978 1-4612-4974-0 26
 
Gridding av klimadata
Gridding av klimadataGridding av klimadata
Gridding av klimadata
 
MATLAB review questions 2014 15
MATLAB review questions 2014 15MATLAB review questions 2014 15
MATLAB review questions 2014 15
 
Computing and Data Analysis for Environmental Applications
Computing and Data Analysis for Environmental ApplicationsComputing and Data Analysis for Environmental Applications
Computing and Data Analysis for Environmental Applications
 
Probability
ProbabilityProbability
Probability
 
2.9 graphs of factorable rational functions t
2.9 graphs of factorable rational functions t2.9 graphs of factorable rational functions t
2.9 graphs of factorable rational functions t
 
rational expression
rational expressionrational expression
rational expression
 
Ica group 3[1]
Ica group 3[1]Ica group 3[1]
Ica group 3[1]
 
3.5 3.6 exp-log models 13-14
3.5 3.6  exp-log models 13-143.5 3.6  exp-log models 13-14
3.5 3.6 exp-log models 13-14
 
Inequalties Of Combined Functions2[1]
Inequalties Of Combined Functions2[1]Inequalties Of Combined Functions2[1]
Inequalties Of Combined Functions2[1]
 
Ri-some algorithm
Ri-some algorithmRi-some algorithm
Ri-some algorithm
 
Integration
IntegrationIntegration
Integration
 
A NEW STUDY OF TRAPEZOIDAL, SIMPSON’S1/3 AND SIMPSON’S 3/8 RULES OF NUMERICAL...
A NEW STUDY OF TRAPEZOIDAL, SIMPSON’S1/3 AND SIMPSON’S 3/8 RULES OF NUMERICAL...A NEW STUDY OF TRAPEZOIDAL, SIMPSON’S1/3 AND SIMPSON’S 3/8 RULES OF NUMERICAL...
A NEW STUDY OF TRAPEZOIDAL, SIMPSON’S1/3 AND SIMPSON’S 3/8 RULES OF NUMERICAL...
 
PartOne
PartOnePartOne
PartOne
 
QMC: Undergraduate Workshop, Introduction to Monte Carlo Methods with 'R' Sof...
QMC: Undergraduate Workshop, Introduction to Monte Carlo Methods with 'R' Sof...QMC: Undergraduate Workshop, Introduction to Monte Carlo Methods with 'R' Sof...
QMC: Undergraduate Workshop, Introduction to Monte Carlo Methods with 'R' Sof...
 
A tour in optimal transport
A tour in optimal transportA tour in optimal transport
A tour in optimal transport
 
R introduction v2
R introduction v2R introduction v2
R introduction v2
 
Permutation graphsandapplications
Permutation graphsandapplicationsPermutation graphsandapplications
Permutation graphsandapplications
 
Inequalties Of Combined Functions2[1]
Inequalties Of Combined Functions2[1]Inequalties Of Combined Functions2[1]
Inequalties Of Combined Functions2[1]
 

Destaque

Algorithms for Query Processing and Optimization of Spatial Operations
Algorithms for Query Processing and Optimization of Spatial OperationsAlgorithms for Query Processing and Optimization of Spatial Operations
Algorithms for Query Processing and Optimization of Spatial OperationsNatasha Mandal
 
spsann - optimization of sample patterns using spatial simulated annealing
spsann - optimization of sample patterns using  spatial simulated annealingspsann - optimization of sample patterns using  spatial simulated annealing
spsann - optimization of sample patterns using spatial simulated annealingAlessandro Samuel-Rosa
 
Exploring Methods to Improve Edge Detection with Canny Algorithm
Exploring Methods to Improve Edge Detection with Canny AlgorithmExploring Methods to Improve Edge Detection with Canny Algorithm
Exploring Methods to Improve Edge Detection with Canny AlgorithmPrasad Thakur
 
The Needleman-Wunsch Algorithm for Sequence Alignment
The Needleman-Wunsch Algorithm for Sequence Alignment The Needleman-Wunsch Algorithm for Sequence Alignment
The Needleman-Wunsch Algorithm for Sequence Alignment Parinda Rajapaksha
 
Image Processing Applied To Traffic Queue Detection Algorithm
Image Processing Applied To Traffic Queue Detection AlgorithmImage Processing Applied To Traffic Queue Detection Algorithm
Image Processing Applied To Traffic Queue Detection Algorithmguest673189
 
Semi supervised learning
Semi supervised learningSemi supervised learning
Semi supervised learningAhmed Taha
 
Edge detection of video using matlab code
Edge detection of video using matlab codeEdge detection of video using matlab code
Edge detection of video using matlab codeBhushan Deore
 
MULTI OBJECTIVE SIMULATED ANNEALING-BASED CLUSTERING OF TISSUE SAMPLES FOR CA...
MULTI OBJECTIVE SIMULATED ANNEALING-BASED CLUSTERING OF TISSUE SAMPLES FOR CA...MULTI OBJECTIVE SIMULATED ANNEALING-BASED CLUSTERING OF TISSUE SAMPLES FOR CA...
MULTI OBJECTIVE SIMULATED ANNEALING-BASED CLUSTERING OF TISSUE SAMPLES FOR CA...SREEKUTTY SREEKUMAR
 
Edge Detection algorithm and code
Edge Detection algorithm and codeEdge Detection algorithm and code
Edge Detection algorithm and codeVaddi Manikanta
 

Destaque (10)

Algorithms for Query Processing and Optimization of Spatial Operations
Algorithms for Query Processing and Optimization of Spatial OperationsAlgorithms for Query Processing and Optimization of Spatial Operations
Algorithms for Query Processing and Optimization of Spatial Operations
 
spsann - optimization of sample patterns using spatial simulated annealing
spsann - optimization of sample patterns using  spatial simulated annealingspsann - optimization of sample patterns using  spatial simulated annealing
spsann - optimization of sample patterns using spatial simulated annealing
 
Exploring Methods to Improve Edge Detection with Canny Algorithm
Exploring Methods to Improve Edge Detection with Canny AlgorithmExploring Methods to Improve Edge Detection with Canny Algorithm
Exploring Methods to Improve Edge Detection with Canny Algorithm
 
The Needleman-Wunsch Algorithm for Sequence Alignment
The Needleman-Wunsch Algorithm for Sequence Alignment The Needleman-Wunsch Algorithm for Sequence Alignment
The Needleman-Wunsch Algorithm for Sequence Alignment
 
Image Processing Applied To Traffic Queue Detection Algorithm
Image Processing Applied To Traffic Queue Detection AlgorithmImage Processing Applied To Traffic Queue Detection Algorithm
Image Processing Applied To Traffic Queue Detection Algorithm
 
Semi supervised learning
Semi supervised learningSemi supervised learning
Semi supervised learning
 
Edge detection of video using matlab code
Edge detection of video using matlab codeEdge detection of video using matlab code
Edge detection of video using matlab code
 
MULTI OBJECTIVE SIMULATED ANNEALING-BASED CLUSTERING OF TISSUE SAMPLES FOR CA...
MULTI OBJECTIVE SIMULATED ANNEALING-BASED CLUSTERING OF TISSUE SAMPLES FOR CA...MULTI OBJECTIVE SIMULATED ANNEALING-BASED CLUSTERING OF TISSUE SAMPLES FOR CA...
MULTI OBJECTIVE SIMULATED ANNEALING-BASED CLUSTERING OF TISSUE SAMPLES FOR CA...
 
Edge Detection algorithm and code
Edge Detection algorithm and codeEdge Detection algorithm and code
Edge Detection algorithm and code
 
Edge detection
Edge detectionEdge detection
Edge detection
 

Semelhante a Optimization of sample configurations for spatial trend estimation

Parameter Optimisation for Automated Feature Point Detection
Parameter Optimisation for Automated Feature Point DetectionParameter Optimisation for Automated Feature Point Detection
Parameter Optimisation for Automated Feature Point DetectionDario Panada
 
Hydraulic similitude and model analysis
Hydraulic similitude and model analysisHydraulic similitude and model analysis
Hydraulic similitude and model analysisMohsin Siddique
 
A note on estimation of population mean in sample survey using auxiliary info...
A note on estimation of population mean in sample survey using auxiliary info...A note on estimation of population mean in sample survey using auxiliary info...
A note on estimation of population mean in sample survey using auxiliary info...Alexander Decker
 
A Non Parametric Estimation Based Underwater Target Classifier
A Non Parametric Estimation Based Underwater Target ClassifierA Non Parametric Estimation Based Underwater Target Classifier
A Non Parametric Estimation Based Underwater Target ClassifierCSCJournals
 
Solving Transportation Problems with Hexagonal Fuzzy Numbers Using Best Candi...
Solving Transportation Problems with Hexagonal Fuzzy Numbers Using Best Candi...Solving Transportation Problems with Hexagonal Fuzzy Numbers Using Best Candi...
Solving Transportation Problems with Hexagonal Fuzzy Numbers Using Best Candi...IJERA Editor
 
Ill-posedness formulation of the emission source localization in the radio- d...
Ill-posedness formulation of the emission source localization in the radio- d...Ill-posedness formulation of the emission source localization in the radio- d...
Ill-posedness formulation of the emission source localization in the radio- d...Ahmed Ammar Rebai PhD
 
Populations LabLAB #3, PART I ESTIMATING POPULATION SIZEO.docx
Populations LabLAB #3, PART I ESTIMATING POPULATION SIZEO.docxPopulations LabLAB #3, PART I ESTIMATING POPULATION SIZEO.docx
Populations LabLAB #3, PART I ESTIMATING POPULATION SIZEO.docxharrisonhoward80223
 
Ratio and Product Type Estimators Using Stratified Ranked Set Sampling
Ratio and Product Type Estimators Using Stratified Ranked Set SamplingRatio and Product Type Estimators Using Stratified Ranked Set Sampling
Ratio and Product Type Estimators Using Stratified Ranked Set Samplinginventionjournals
 
Transportation Problem with Pentagonal Intuitionistic Fuzzy Numbers Solved Us...
Transportation Problem with Pentagonal Intuitionistic Fuzzy Numbers Solved Us...Transportation Problem with Pentagonal Intuitionistic Fuzzy Numbers Solved Us...
Transportation Problem with Pentagonal Intuitionistic Fuzzy Numbers Solved Us...IJERA Editor
 
Object class recognition by unsupervide scale invariant learning - kunal
Object class recognition by unsupervide scale invariant learning - kunalObject class recognition by unsupervide scale invariant learning - kunal
Object class recognition by unsupervide scale invariant learning - kunalKunal Kishor Nirala
 
Computational Intelligence Assisted Engineering Design Optimization (using MA...
Computational Intelligence Assisted Engineering Design Optimization (using MA...Computational Intelligence Assisted Engineering Design Optimization (using MA...
Computational Intelligence Assisted Engineering Design Optimization (using MA...AmirParnianifard1
 
Suggest one psychological research question that could be answered.docx
Suggest one psychological research question that could be answered.docxSuggest one psychological research question that could be answered.docx
Suggest one psychological research question that could be answered.docxpicklesvalery
 
ABC short course: final chapters
ABC short course: final chaptersABC short course: final chapters
ABC short course: final chaptersChristian Robert
 
BPSO&1-NN algorithm-based variable selection for power system stability ident...
BPSO&1-NN algorithm-based variable selection for power system stability ident...BPSO&1-NN algorithm-based variable selection for power system stability ident...
BPSO&1-NN algorithm-based variable selection for power system stability ident...IJAEMSJORNAL
 
MODELING THE CHLOROPHYLL-A FROM SEA SURFACE REFLECTANCE IN WEST AFRICA BY DEE...
MODELING THE CHLOROPHYLL-A FROM SEA SURFACE REFLECTANCE IN WEST AFRICA BY DEE...MODELING THE CHLOROPHYLL-A FROM SEA SURFACE REFLECTANCE IN WEST AFRICA BY DEE...
MODELING THE CHLOROPHYLL-A FROM SEA SURFACE REFLECTANCE IN WEST AFRICA BY DEE...gerogepatton
 

Semelhante a Optimization of sample configurations for spatial trend estimation (20)

Parameter Optimisation for Automated Feature Point Detection
Parameter Optimisation for Automated Feature Point DetectionParameter Optimisation for Automated Feature Point Detection
Parameter Optimisation for Automated Feature Point Detection
 
Hydraulic similitude and model analysis
Hydraulic similitude and model analysisHydraulic similitude and model analysis
Hydraulic similitude and model analysis
 
A note on estimation of population mean in sample survey using auxiliary info...
A note on estimation of population mean in sample survey using auxiliary info...A note on estimation of population mean in sample survey using auxiliary info...
A note on estimation of population mean in sample survey using auxiliary info...
 
Pakdd
PakddPakdd
Pakdd
 
A Non Parametric Estimation Based Underwater Target Classifier
A Non Parametric Estimation Based Underwater Target ClassifierA Non Parametric Estimation Based Underwater Target Classifier
A Non Parametric Estimation Based Underwater Target Classifier
 
Solving Transportation Problems with Hexagonal Fuzzy Numbers Using Best Candi...
Solving Transportation Problems with Hexagonal Fuzzy Numbers Using Best Candi...Solving Transportation Problems with Hexagonal Fuzzy Numbers Using Best Candi...
Solving Transportation Problems with Hexagonal Fuzzy Numbers Using Best Candi...
 
Respose surface methods
Respose surface methodsRespose surface methods
Respose surface methods
 
Ill-posedness formulation of the emission source localization in the radio- d...
Ill-posedness formulation of the emission source localization in the radio- d...Ill-posedness formulation of the emission source localization in the radio- d...
Ill-posedness formulation of the emission source localization in the radio- d...
 
Populations LabLAB #3, PART I ESTIMATING POPULATION SIZEO.docx
Populations LabLAB #3, PART I ESTIMATING POPULATION SIZEO.docxPopulations LabLAB #3, PART I ESTIMATING POPULATION SIZEO.docx
Populations LabLAB #3, PART I ESTIMATING POPULATION SIZEO.docx
 
Ratio and Product Type Estimators Using Stratified Ranked Set Sampling
Ratio and Product Type Estimators Using Stratified Ranked Set SamplingRatio and Product Type Estimators Using Stratified Ranked Set Sampling
Ratio and Product Type Estimators Using Stratified Ranked Set Sampling
 
Transportation Problem with Pentagonal Intuitionistic Fuzzy Numbers Solved Us...
Transportation Problem with Pentagonal Intuitionistic Fuzzy Numbers Solved Us...Transportation Problem with Pentagonal Intuitionistic Fuzzy Numbers Solved Us...
Transportation Problem with Pentagonal Intuitionistic Fuzzy Numbers Solved Us...
 
Object class recognition by unsupervide scale invariant learning - kunal
Object class recognition by unsupervide scale invariant learning - kunalObject class recognition by unsupervide scale invariant learning - kunal
Object class recognition by unsupervide scale invariant learning - kunal
 
Computational Intelligence Assisted Engineering Design Optimization (using MA...
Computational Intelligence Assisted Engineering Design Optimization (using MA...Computational Intelligence Assisted Engineering Design Optimization (using MA...
Computational Intelligence Assisted Engineering Design Optimization (using MA...
 
O0447796
O0447796O0447796
O0447796
 
SPACE TIME ADAPTIVE PROCESSING FOR CLUTTER SUPPRESSION IN RADAR USING SUBSPAC...
SPACE TIME ADAPTIVE PROCESSING FOR CLUTTER SUPPRESSION IN RADAR USING SUBSPAC...SPACE TIME ADAPTIVE PROCESSING FOR CLUTTER SUPPRESSION IN RADAR USING SUBSPAC...
SPACE TIME ADAPTIVE PROCESSING FOR CLUTTER SUPPRESSION IN RADAR USING SUBSPAC...
 
Suggest one psychological research question that could be answered.docx
Suggest one psychological research question that could be answered.docxSuggest one psychological research question that could be answered.docx
Suggest one psychological research question that could be answered.docx
 
ABC short course: final chapters
ABC short course: final chaptersABC short course: final chapters
ABC short course: final chapters
 
Método de los Mínimos Cuadrados
Método de los Mínimos CuadradosMétodo de los Mínimos Cuadrados
Método de los Mínimos Cuadrados
 
BPSO&1-NN algorithm-based variable selection for power system stability ident...
BPSO&1-NN algorithm-based variable selection for power system stability ident...BPSO&1-NN algorithm-based variable selection for power system stability ident...
BPSO&1-NN algorithm-based variable selection for power system stability ident...
 
MODELING THE CHLOROPHYLL-A FROM SEA SURFACE REFLECTANCE IN WEST AFRICA BY DEE...
MODELING THE CHLOROPHYLL-A FROM SEA SURFACE REFLECTANCE IN WEST AFRICA BY DEE...MODELING THE CHLOROPHYLL-A FROM SEA SURFACE REFLECTANCE IN WEST AFRICA BY DEE...
MODELING THE CHLOROPHYLL-A FROM SEA SURFACE REFLECTANCE IN WEST AFRICA BY DEE...
 

Mais de Alessandro Samuel-Rosa

Bringing Together Brazilian Soil Scientists to Share Soil Data
Bringing Together Brazilian Soil Scientists to Share Soil DataBringing Together Brazilian Soil Scientists to Share Soil Data
Bringing Together Brazilian Soil Scientists to Share Soil DataAlessandro Samuel-Rosa
 
Uma aliança global pelo solo para alcançar o desenvolvimento sustentável
Uma aliança global pelo solo  para alcançar o  desenvolvimento sustentávelUma aliança global pelo solo  para alcançar o  desenvolvimento sustentável
Uma aliança global pelo solo para alcançar o desenvolvimento sustentávelAlessandro Samuel-Rosa
 
The Free Brazilian Repository for Open Soil Data (febr)
The Free Brazilian Repository for Open Soil Data (febr)The Free Brazilian Repository for Open Soil Data (febr)
The Free Brazilian Repository for Open Soil Data (febr)Alessandro Samuel-Rosa
 
Stacked generalization of statistical learners – a case study with soil iron ...
Stacked generalization of statistical learners – a case study with soil iron ...Stacked generalization of statistical learners – a case study with soil iron ...
Stacked generalization of statistical learners – a case study with soil iron ...Alessandro Samuel-Rosa
 
Optimization of sample configurations for variogram estimation
Optimization of sample configurations for variogram estimationOptimization of sample configurations for variogram estimation
Optimization of sample configurations for variogram estimationAlessandro Samuel-Rosa
 
Otimização da configuração amostral para o mapeamento pedométrico
Otimização da configuração amostral para o mapeamento pedométricoOtimização da configuração amostral para o mapeamento pedométrico
Otimização da configuração amostral para o mapeamento pedométricoAlessandro Samuel-Rosa
 
ISRIC's Fruitfull Presentation - report of activities
 ISRIC's Fruitfull Presentation - report of activities ISRIC's Fruitfull Presentation - report of activities
ISRIC's Fruitfull Presentation - report of activitiesAlessandro Samuel-Rosa
 
Projeto de Doutoramento em Agronomia - Ciência do Solo (UFRRJ)
Projeto de Doutoramento em Agronomia - Ciência do Solo (UFRRJ)Projeto de Doutoramento em Agronomia - Ciência do Solo (UFRRJ)
Projeto de Doutoramento em Agronomia - Ciência do Solo (UFRRJ)Alessandro Samuel-Rosa
 
Introdução ao Mapeamento Digital do Solo
Introdução ao Mapeamento Digital  do SoloIntrodução ao Mapeamento Digital  do Solo
Introdução ao Mapeamento Digital do SoloAlessandro Samuel-Rosa
 

Mais de Alessandro Samuel-Rosa (13)

Bringing Together Brazilian Soil Scientists to Share Soil Data
Bringing Together Brazilian Soil Scientists to Share Soil DataBringing Together Brazilian Soil Scientists to Share Soil Data
Bringing Together Brazilian Soil Scientists to Share Soil Data
 
Uma aliança global pelo solo para alcançar o desenvolvimento sustentável
Uma aliança global pelo solo  para alcançar o  desenvolvimento sustentávelUma aliança global pelo solo  para alcançar o  desenvolvimento sustentável
Uma aliança global pelo solo para alcançar o desenvolvimento sustentável
 
The Free Brazilian Repository for Open Soil Data (febr)
The Free Brazilian Repository for Open Soil Data (febr)The Free Brazilian Repository for Open Soil Data (febr)
The Free Brazilian Repository for Open Soil Data (febr)
 
Stacked generalization of statistical learners – a case study with soil iron ...
Stacked generalization of statistical learners – a case study with soil iron ...Stacked generalization of statistical learners – a case study with soil iron ...
Stacked generalization of statistical learners – a case study with soil iron ...
 
Optimization of sample configurations for variogram estimation
Optimization of sample configurations for variogram estimationOptimization of sample configurations for variogram estimation
Optimization of sample configurations for variogram estimation
 
Otimização da configuração amostral para o mapeamento pedométrico
Otimização da configuração amostral para o mapeamento pedométricoOtimização da configuração amostral para o mapeamento pedométrico
Otimização da configuração amostral para o mapeamento pedométrico
 
ISRIC's Fruitfull Presentation - report of activities
 ISRIC's Fruitfull Presentation - report of activities ISRIC's Fruitfull Presentation - report of activities
ISRIC's Fruitfull Presentation - report of activities
 
ISRIC's Fruitfull Presentation
ISRIC's Fruitfull PresentationISRIC's Fruitfull Presentation
ISRIC's Fruitfull Presentation
 
Projeto de Doutoramento em Agronomia - Ciência do Solo (UFRRJ)
Projeto de Doutoramento em Agronomia - Ciência do Solo (UFRRJ)Projeto de Doutoramento em Agronomia - Ciência do Solo (UFRRJ)
Projeto de Doutoramento em Agronomia - Ciência do Solo (UFRRJ)
 
How Can I Contribute?
How Can I Contribute?How Can I Contribute?
How Can I Contribute?
 
Introdução ao Mapeamento Digital do Solo
Introdução ao Mapeamento Digital  do SoloIntrodução ao Mapeamento Digital  do Solo
Introdução ao Mapeamento Digital do Solo
 
Presentation at Accuracy 2012
Presentation at Accuracy 2012Presentation at Accuracy 2012
Presentation at Accuracy 2012
 
Solos do Rio Grande do Sul
Solos do Rio Grande do SulSolos do Rio Grande do Sul
Solos do Rio Grande do Sul
 

Último

Discovery of an Accretion Streamer and a Slow Wide-angle Outflow around FUOri...
Discovery of an Accretion Streamer and a Slow Wide-angle Outflow around FUOri...Discovery of an Accretion Streamer and a Slow Wide-angle Outflow around FUOri...
Discovery of an Accretion Streamer and a Slow Wide-angle Outflow around FUOri...Sérgio Sacani
 
Unlocking the Potential: Deep dive into ocean of Ceramic Magnets.pptx
Unlocking  the Potential: Deep dive into ocean of Ceramic Magnets.pptxUnlocking  the Potential: Deep dive into ocean of Ceramic Magnets.pptx
Unlocking the Potential: Deep dive into ocean of Ceramic Magnets.pptxanandsmhk
 
Botany 4th semester series (krishna).pdf
Botany 4th semester series (krishna).pdfBotany 4th semester series (krishna).pdf
Botany 4th semester series (krishna).pdfSumit Kumar yadav
 
Nanoparticles synthesis and characterization​ ​
Nanoparticles synthesis and characterization​  ​Nanoparticles synthesis and characterization​  ​
Nanoparticles synthesis and characterization​ ​kaibalyasahoo82800
 
Recombination DNA Technology (Nucleic Acid Hybridization )
Recombination DNA Technology (Nucleic Acid Hybridization )Recombination DNA Technology (Nucleic Acid Hybridization )
Recombination DNA Technology (Nucleic Acid Hybridization )aarthirajkumar25
 
PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...
PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...
PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...Sérgio Sacani
 
Orientation, design and principles of polyhouse
Orientation, design and principles of polyhouseOrientation, design and principles of polyhouse
Orientation, design and principles of polyhousejana861314
 
A relative description on Sonoporation.pdf
A relative description on Sonoporation.pdfA relative description on Sonoporation.pdf
A relative description on Sonoporation.pdfnehabiju2046
 
Pests of cotton_Sucking_Pests_Dr.UPR.pdf
Pests of cotton_Sucking_Pests_Dr.UPR.pdfPests of cotton_Sucking_Pests_Dr.UPR.pdf
Pests of cotton_Sucking_Pests_Dr.UPR.pdfPirithiRaju
 
Natural Polymer Based Nanomaterials
Natural Polymer Based NanomaterialsNatural Polymer Based Nanomaterials
Natural Polymer Based NanomaterialsAArockiyaNisha
 
Animal Communication- Auditory and Visual.pptx
Animal Communication- Auditory and Visual.pptxAnimal Communication- Auditory and Visual.pptx
Animal Communication- Auditory and Visual.pptxUmerFayaz5
 
Broad bean, Lima Bean, Jack bean, Ullucus.pptx
Broad bean, Lima Bean, Jack bean, Ullucus.pptxBroad bean, Lima Bean, Jack bean, Ullucus.pptx
Broad bean, Lima Bean, Jack bean, Ullucus.pptxjana861314
 
Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...
Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...
Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...anilsa9823
 
All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...
All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...
All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...Sérgio Sacani
 
Bentham & Hooker's Classification. along with the merits and demerits of the ...
Bentham & Hooker's Classification. along with the merits and demerits of the ...Bentham & Hooker's Classification. along with the merits and demerits of the ...
Bentham & Hooker's Classification. along with the merits and demerits of the ...Nistarini College, Purulia (W.B) India
 
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...Labelling Requirements and Label Claims for Dietary Supplements and Recommend...
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...Lokesh Kothari
 
Artificial Intelligence In Microbiology by Dr. Prince C P
Artificial Intelligence In Microbiology by Dr. Prince C PArtificial Intelligence In Microbiology by Dr. Prince C P
Artificial Intelligence In Microbiology by Dr. Prince C PPRINCE C P
 
Nightside clouds and disequilibrium chemistry on the hot Jupiter WASP-43b
Nightside clouds and disequilibrium chemistry on the hot Jupiter WASP-43bNightside clouds and disequilibrium chemistry on the hot Jupiter WASP-43b
Nightside clouds and disequilibrium chemistry on the hot Jupiter WASP-43bSérgio Sacani
 

Último (20)

Engler and Prantl system of classification in plant taxonomy
Engler and Prantl system of classification in plant taxonomyEngler and Prantl system of classification in plant taxonomy
Engler and Prantl system of classification in plant taxonomy
 
Discovery of an Accretion Streamer and a Slow Wide-angle Outflow around FUOri...
Discovery of an Accretion Streamer and a Slow Wide-angle Outflow around FUOri...Discovery of an Accretion Streamer and a Slow Wide-angle Outflow around FUOri...
Discovery of an Accretion Streamer and a Slow Wide-angle Outflow around FUOri...
 
Unlocking the Potential: Deep dive into ocean of Ceramic Magnets.pptx
Unlocking  the Potential: Deep dive into ocean of Ceramic Magnets.pptxUnlocking  the Potential: Deep dive into ocean of Ceramic Magnets.pptx
Unlocking the Potential: Deep dive into ocean of Ceramic Magnets.pptx
 
Botany 4th semester series (krishna).pdf
Botany 4th semester series (krishna).pdfBotany 4th semester series (krishna).pdf
Botany 4th semester series (krishna).pdf
 
Nanoparticles synthesis and characterization​ ​
Nanoparticles synthesis and characterization​  ​Nanoparticles synthesis and characterization​  ​
Nanoparticles synthesis and characterization​ ​
 
Recombination DNA Technology (Nucleic Acid Hybridization )
Recombination DNA Technology (Nucleic Acid Hybridization )Recombination DNA Technology (Nucleic Acid Hybridization )
Recombination DNA Technology (Nucleic Acid Hybridization )
 
PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...
PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...
PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...
 
Orientation, design and principles of polyhouse
Orientation, design and principles of polyhouseOrientation, design and principles of polyhouse
Orientation, design and principles of polyhouse
 
CELL -Structural and Functional unit of life.pdf
CELL -Structural and Functional unit of life.pdfCELL -Structural and Functional unit of life.pdf
CELL -Structural and Functional unit of life.pdf
 
A relative description on Sonoporation.pdf
A relative description on Sonoporation.pdfA relative description on Sonoporation.pdf
A relative description on Sonoporation.pdf
 
Pests of cotton_Sucking_Pests_Dr.UPR.pdf
Pests of cotton_Sucking_Pests_Dr.UPR.pdfPests of cotton_Sucking_Pests_Dr.UPR.pdf
Pests of cotton_Sucking_Pests_Dr.UPR.pdf
 
Natural Polymer Based Nanomaterials
Natural Polymer Based NanomaterialsNatural Polymer Based Nanomaterials
Natural Polymer Based Nanomaterials
 
Animal Communication- Auditory and Visual.pptx
Animal Communication- Auditory and Visual.pptxAnimal Communication- Auditory and Visual.pptx
Animal Communication- Auditory and Visual.pptx
 
Broad bean, Lima Bean, Jack bean, Ullucus.pptx
Broad bean, Lima Bean, Jack bean, Ullucus.pptxBroad bean, Lima Bean, Jack bean, Ullucus.pptx
Broad bean, Lima Bean, Jack bean, Ullucus.pptx
 
Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...
Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...
Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...
 
All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...
All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...
All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...
 
Bentham & Hooker's Classification. along with the merits and demerits of the ...
Bentham & Hooker's Classification. along with the merits and demerits of the ...Bentham & Hooker's Classification. along with the merits and demerits of the ...
Bentham & Hooker's Classification. along with the merits and demerits of the ...
 
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...Labelling Requirements and Label Claims for Dietary Supplements and Recommend...
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...
 
Artificial Intelligence In Microbiology by Dr. Prince C P
Artificial Intelligence In Microbiology by Dr. Prince C PArtificial Intelligence In Microbiology by Dr. Prince C P
Artificial Intelligence In Microbiology by Dr. Prince C P
 
Nightside clouds and disequilibrium chemistry on the hot Jupiter WASP-43b
Nightside clouds and disequilibrium chemistry on the hot Jupiter WASP-43bNightside clouds and disequilibrium chemistry on the hot Jupiter WASP-43b
Nightside clouds and disequilibrium chemistry on the hot Jupiter WASP-43b
 

Optimization of sample configurations for spatial trend estimation

  • 1. Support We are grateful to Dr. Gerard Heuvelink, from ISRIC – World Soil Information, for his comments during the development of this work. The first author was supported by the CAPES Foundation, Ministry of Education of Brazil (Process BEX 11677/13-9), and by the CNPq Foundation, Ministry of Science and Technology of Brazil Technology of Brazil (Process 480515/2013-1). Pedometrics 2015 14 – 18 September 2015 Faculty of Labour Sciences, Avenida de Ollerías 2 Córdoba, Spain (37.891586, -4.777202) Optimization of Sample Configurations for Spatial Trend Estimation Alessandro Samuel-Rosa(1) , Dick J Brus(2) , Gustavo M Vasques(3) , Lúcia H C Anjos(1) (1) Universidade Federal Rural do Rio de Janeiro, Brazil (alessandrosamuelrosa@gmail.com, lanjos@ufrrj.br); (2) Alterra, Wageningen University and Research Centre, the Netherlands (dick.brus@wur.nl); (3) Embrapa Soils, Brazil (gustavo.vasques@embrapa.br). Introduction The spatial trend corresponds to the spatial variation of Z(s) that is explained linearly or non-linearly by the covariates. There are various methods to design samples for spatial trend estimation. One of the most used in soil science, the so-called conditioned Latin Hypercube Sampling (cLHS) (Minasny & McBratney, 2006), searches for a spatial sample optimal in terms of 1) coverage of the marginal distribution of numeric covariates, 2) linear correlation of numeric covariates, and 3) proportional sample sizes for the classes of factor covariates. The idea is that with such a sample we can identify the “true” spatial trend if we are ignorant about its form. We propose to improve on the existing cLHS and present our implementation in the R-package spsann. Measuring the Association Between Factor Covariates Like the cLHS, our implementation it is based on solving a multi-objective optimization problem (MOOP) using spatial simulated annealing. But instead of three, we define two objective functions. As such, we redefine the optimization criterion as the reproduction of an Association/Correlation measure and the marginal Distribution of the Covariates (ACDC). This is because the cLHS ignores the association among factor covariates and among factor and numeric covariates. We propose to use the Pearson's r (correlation) only when all covariates are numeric, and the Cramér's V (association) when some or all covariates are factors. In the latter case any numeric covariate is transformed to a factor covariate, with the factor levels defined by the marginal sampling strata. where r and c are the number of rows and columns of the contingency table, n is the number of observations, and χ2 is the chi-squared statistic where Oi and Ei are the observed and expected frequency, respectively (Cramer, 1946). Defining the Marginal Sampling Strata The cLHS uses quantiles to create equal-area marginal sampling strata. Depending on the number of marginal strata, this may produce replicated breakpoints in regions with a relatively high frequency of covariate values. R> # Replicated breakpoints R> sample_size <- 5 R> covariate <- c(1, 5, 1, 3, 4, 1, 2, 3, 2, 1, 8, 9, 9, 9, 9) R> probs <- seq(0, 1, length.out = sample_size + 1) R> breaks <- quantile(covariate, probs, na.rm = TRUE) R> breaks 0% 20% 40% 60% 80% 100% 1.0 1.0 2.6 4.4 9.0 9.0 The presence of replicated breakpoints prevents the optimization algorithm from converging to the optimum. We propose defining marginal sampling strata using only the unique values of the sample quantiles estimated with a discontinuous function (Hyndman & Fan, 1996). This avoids creating empty marginal strata. R> # Unique breakpoints R> breaks <- quantile(covariate, probs, na.rm = TRUE, type = 3) R> breaks <- unique(breaks) R> breaks [1] 1 2 4 9 This approach results in each numeric covariate having a different number of quasi-equal-size sampling strata. The number of sample points that should fall in each marginal sampling stratum is proportional to the number of sampling units in that stratum. R> # Number of points per strata R> count <- hist(covariate, breaks, plot = FALSE)$counts R> count <- count / sum(count) * sample_size R> count [1] 2 1 2 Avoiding Numerical Dominance We also solve the MOOP aggregating the objective functions into a single utility function using a weighted sum, the weights defining the relative importance of each objective function: where w is a vector of positive weights that sum to unity, k being the number of objective functions (Marler & Arora, 2009). The improvement is that the objective functions are first scaled to the same approximate range of values using the upper-lower bound approach with the Pareto maximum (and minimum): where xj * is the point that minimizes the jth objective function, a vertex of the Pareto optimal set in the design space (Marler & Arora, 2005). Using the Pareto maximum (and minimum) avoids the numerical dominance (bias) of any objective function such as occurs with the first objective function (O1 ) of the cLHS that yields criterion values much larger than the second (O2 ) and third (O3 ). The numerical dominance occurs because O1 uses the number of points per strata (0 to n), while O2 uses the proportion of points per strata (0 to 1) and O3 uses the linear correlation coefficient (-1 to 1). V= √ χ2 /n min(c−1,r−1) χ 2 = ∑i=1 r ∑j=1 c (Oi−Ei) 2 Ei U =∑i=1 k wi f i(x) f i max =max1≤j≤k f i(x j ∗ ) References Cramér, H. Mathematical methods of statistics. Princeton: Princeton University Press, p. 575, 1946. Hyndman, R. J. & Fan, Y. Sample quantiles in statistical packages. The American Statistician, v. 50, p. 361-365, 1996. Marler, R. T. & Arora, J. S. Function-transformation methods for multi-objective optimization. Engineering Optimization, v. 37, p. 551-570, 2005. Marler, R. T. & Arora, J. S. The weighted sum method for multi-objective optimization: new insights. Structural and Multidisciplinary Optimization, v. 41, p. 853-862, 2009. Minasny, B. & McBratney, A. B. A conditioned Latin hypercube method for sampling in the presence of ancillary information. Computers & Geosciences, v. 32, p. 1378-1388, 2006. Preliminary Results Our preliminary results indicated that sampling distributions derived using our algorithm varied very little from the same set of covariates, indicating that the criterion approaches the global optimum. An in-depth study is being carried out to evaluate how our implementation performs compared to the original cLHS method (and other sample designs as well). Using simulated data, we will evaluate their ability to capture the true form of the spatial trend (linear and non-linear) and make accurate predictions. Acknowledgements We are grateful to Dr. Gerard Heuvelink, from ISRIC – World Soil Information, for his comments during the development of this work. The first author was supported by the CAPES Foundation, Ministry of Education of Brazil (Process BEX 11677/13-9), and by the CNPq Foundation, Ministry of Science and Technology of Brazil (Process 140720/2012-0). The last author was supported by the CNPq Foundation, Ministry of Science and Technology of Brazil (Process 480515/2013-1). Student Presentation