MorseGen-package: Simple raw data generator based on user-specified summary...

Description Details Author(s) Examples

Description

MorseGen is a program for generating raw data based on user-specified summary (descriptive) statistics. Samples based on the supplied statistics are drawn from an appropriate distribution (normal or exponential) and scaled to match the desired descriptive statistics. Intended uses include creating raw data that fits desired characteristics or to replicate the results in a published study.

Details

Package: MorseGen
Type: Package
Version: 1.2
Date: 2012-06-04
License: GPL-2

MorseGen includes three different functions for generating data based on user-specified summary (descriptive) statistics. The stat.gen function will create a single vector of N scores with a specified mean and standard deviation. The cor.gen function will create two vectors of N scores with the specified means and standard deviations as well as a specified correlation.

Author(s)

Brendan Morse

Maintainer: Brendan Morse <bmorse@bridgew.edu>

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
# Generate a sample of 10 scores 
# with a mean equal to 18.4 and a 
# standard deviation of 3.2.

stat.gen(10,18.4,3.2)

# Generate a sample of 20 scores with 
# a mean equal to 9.1, and a standard 
# deviation of 3.2. Additionally, the 
# raw data must be in positive, whole-
# unit integers.

stat.gen(10,18.4,3.2,data.dec=0,neg.data=FALSE)

# Generate two variables (with means 5.65 
# & 100.2 and standard deviations 2.13 & 16.8 
# respectively) from 15 individuals that are 
# correlated at r = -.68

cor.gen(15,5.65,2.13,100.2,16.8,-.68)

MorseGen documentation built on May 1, 2019, 8:43 p.m.