adlift (version 1.3-3)

dojitter: dojitter

Description

This function adds a random uniform vector of the same length as the input to modify the input.

Usage

dojitter(x, amount = 0)

Arguments

x

a vector to be jittered (e.g. a gridpoint vector).

amount

a value of how much to jitter the vector x.

Value

jx

the jittered version of x

Details

The function creates length(x) samples from a uniform[-amount,amount], and adds these to the original vector x. If amount=0, the new vector jx is the same as the original vector.

See Also

modjitter

Examples

Run this code
# NOT RUN {
#create grid vector
#
xgrid<-seq(0,1,length=51)
#
xgrid
#
#a regularly-spaced grid
#
dojitter(xgrid,.01)
#
#a jittered grid.
# 
# }

Run the code above in your browser using DataCamp Workspace