Definition of the S4 class named StfwfSchema
for the data.frame providing the
schema of the fixed-width file to read.
df
data.frame with 5 columns:
variable: the name of the variable.
width: the number of positions which the values of this variable occupies in the file.
initialPos: initial position of the field whic hthe values of this variable occupies in the file.
finalPos: final position of the field whic hthe values of this variable occupies in the file.
type: type of the variable. It must be either num
or char
.
valueRegEx: regular expression for the values of this variable.
description: textual description of the variable.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # An empty StfwfSchema object:
new(Class = 'StfwfSchema')
# A trivial example:
df <- data.frame(variable = c('Turnover', 'Employees'),
width = c(9L, 3L),
initialPos = c(1, 10),
finalPos = c(9, 12),
type = rep('num', 2),
valueRegEx = c('[0-9]{0,9}', '[0-9]{0,3}'),
description = c('Turnover of the business unit',
'Number of employees of the business unit'),
stringsAsFactors = FALSE)
new(Class = 'StfwfSchema', df = df)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.