stringseed.sampling: Use Any Alphanumeric Input as a Seed

Description Usage Arguments Value Author(s) References See Also Examples

View source: R/stringseed.sampling.R

Description

The stringseed.sampling function is designed as a batch sampling function that allows the user to specify any alphanumeric input as the seed per sample in the batch.

Usage

1
stringseed.sampling(seedbase, N, n, write.output = FALSE)

Arguments

seedbase

A vector of seeds to be used for sampling.

N

The "population" from which to draw the sample.

n

The desired number of samples.

write.output

Logical. Should the output be written to a file? Defaults to FALSE. If TRUE, a csv file is written with the sample "metadata", and a plain text file is written with the details of the resulting sample. The names of the files written are "Sample frame generated on {date the script was run} .csv" and "Samples generated on {date the script was run} .txt" and will be found in your current working directory.

Value

This function returns a list with the class "stringSeedSampling" and uses a custom print method. The list items are:

Use print.default(your-object-here) to view the underlying list.

Author(s)

Ananda Mahto

References

See: http://stackoverflow.com/q/10910698/1270695

See Also

digest

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
# We'll use a data.frame with a list of village names, the population,
#   and the desired samples as our columns. The function will use the
#   village names to generate a unique seed for each village before
#   drawing the sample.
myListOfPlaces <- data.frame(
villageName = c("Melakkal", "Sholavandan", "T. Malaipatti"),
population = c(120, 130, 140),
requiredSample = c(30, 25, 12))
myListOfPlaces

stringseed.sampling(seedbase = myListOfPlaces$villageName,
               N = myListOfPlaces$population,
               n = myListOfPlaces$requiredSample)

# Manual verification of the samples generated for Melakkal village
#   (for which the automatically generated seed was 1331891848)
set.seed(1331891848)
sample(120, 30)

# What about using the function on a single input?
stringseed.sampling("Santa Barbara", 1920, 100)

mrdwab/mrdwabmisc documentation built on May 23, 2019, 7:15 a.m.