LK4D4 / sample

Sampling with weights

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

sample

Build Status GoDoc

Sampling with weights

Usage

package main

import (
	"fmt"

	"github.com/LK4D4/sample"
)

type weightedInt struct {
	elt    int
	weight float64
}

func (w weightedInt) Weight() float64 {
	return w.weight
}

func SampleInt(w []sample.Weighted, k int) ([]int, error) {
	s, err := sample.Sample(w, k)
	if err != nil {
		return nil, err
	}
	var res []int
	for _, wi := range s {
		res = append(res, wi.(weightedInt).elt)
	}
	return res, nil
}

func main() {
	var wl []sample.Weighted
	for i := 1; i < 32; i++ {
		wl = append(wl, weightedInt{i, float64(i)})
	}
	n, err := SampleInt(wl, 3)
	if err != nil {
		panic(err)
	}
	fmt.Println(n)
}

About

Sampling with weights

License:MIT License


Languages

Language:Go 100.0%