Displaying 1 result from an estimated 1 matches for "rescaled_column".
2007 Jan 22
1
Example function for bigglm (biglm) data input from file
...d of the input,
# so this function will return data.
# Here, you can define any derived fields
# or put instructions to rescale input data
# that you want done after the data are read
# but before they are used for fitting.
# For example:
rval$rescaled_column <- rval$original_column / 1000000.0;
# If you don't want to do anything like this,
# then delete this "else" clause, and make
# the end of the function resemble the URL
# example in bigglm.
};
return(rval);
}
}
};
a <- make.data...