All Downloads are FREE. Search and download functionalities are using the official Maven repository.

stats.utils.Resample Maven / Gradle / Ivy

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  package stats.utils;

import datasets.VectorDouble;
import datastructs.IVector;

import java.util.Random;

/**
 * Implements various resampling strategies
 */
public class Resample {

    /**
      * Populates NumericSample  with items from NumericSample in
      * by using an random number generator that uses the given seed
      * This function uses replacement
     */
    public static IVector resample(final VectorDouble in, int size , int seed){

        if(size==0){
            throw new IllegalArgumentException("Cannot resample on a sample of zero size...");
        }

        VectorDouble outSample;
        if(size < in.size()){

            outSample = Resample.resampleWithSmallerSize(in, size, seed);
        }
        else if(size > in.size()){
            throw new IllegalArgumentException("resample size>in.size()..  Not implemented yet");
        }
        else{

            Random random = new Random();
            random.setSeed(seed);
            outSample = new VectorDouble(size);

            for(int i=0; i in.size()){
            throw new IllegalArgumentException("Resample size should be smaller that in.size()...");
        }

        Random random = new Random();
        random.setSeed(seed);

        VectorDouble outSample = new VectorDouble(size);
        int position = 0; // the next available position in  outSample

        for(int i=0; i




© 2015 - 2024 Weber Informatics LLC | Privacy Policy