hipread_long_yield {hipread} | R Documentation |
Read a hierarchical fixed width data file, in yields
Description
Enhances hipread_long()
or hipread_list()
to allow you to read
hierarchical data in pieces (called 'yields') and allow your code to
have full control between reading pieces, allowing for more freedom
than the 'callback' method introduced in the chunk functions (like
hipread_long_chunked()
).
Usage
hipread_long_yield(
file,
var_info,
rt_info = hip_rt(1, 0),
compression = NULL,
skip = 0,
encoding = "UTF-8"
)
hipread_list_yield(
file,
var_info,
rt_info = hip_rt(1, 0),
compression = NULL,
skip = 0,
encoding = "UTF-8"
)
Arguments
file |
A filename |
var_info |
Variable information, specified by either |
rt_info |
A record type information object, created by |
compression |
If |
skip |
Number of lines to skip at the start of the data (defaults to 0). |
encoding |
(Defaults to UTF-8) A string indicating what encoding to use when reading the data, but like readr, the data will always be converted to UTF-8 once it is imported. Note that UTF-16 and UTF-32 are not supported for non-character columns. |
Details
These functions return a HipYield R6 object which have the following methods:
-
yield(n = 10000)
A function to read the next 'yield' from the data, returns atbl_df
(or list oftbl_df
forhipread_list_yield()
) with up to n rows (it will return NULL if no rows are left, or all available ones if less than n are available). -
reset()
A function to reset the data so that the next yield will read data from the start. -
is_done()
A function that returns whether the file has been completely read yet or not. -
cur_pos
A property that contains the next row number that will be read (1-indexed).
Value
A HipYield R6 object (See 'Details' for more information)
Methods
Public methods
Method new()
Usage
HipYield$new( file, var_info, rt_info = hip_rt(0, 1), compression = NULL, skip = 0, encoding = NULL )
Method yield()
Usage
HipYield$yield(n = 10000)
Method reset()
Usage
HipYield$reset()
Method is_done()
Usage
HipYield$is_done()
Super class
hipread::HipYield
-> HipLongYield
Methods
Public methods
Inherited methods
Method new()
Usage
HipLongYield$new( file, var_info, rt_info = hip_rt(0, 1), compression = NULL, skip = 0, encoding = NULL )
Method yield()
Usage
HipLongYield$yield(n = 10000)
Super class
hipread::HipYield
-> HipListYield
Methods
Public methods
Inherited methods
Method new()
Usage
HipListYield$new( file, var_info, rt_info = hip_rt(0, 1), compression = NULL, skip = 0, encoding = NULL )
Method yield()
Usage
HipListYield$yield(n = 10000)
Examples
library(hipread)
data <- hipread_long_yield(
hipread_example("test-basic.dat"),
list(
H = hip_fwf_positions(
c(1, 2, 5, 8),
c(1, 4, 7, 10),
c("rt", "hhnum", "hh_char", "hh_dbl"),
c("c", "i", "c", "d")
),
P = hip_fwf_widths(
c(1, 3, 1, 3, 1),
c("rt", "hhnum", "pernum", "per_dbl", "per_mix"),
c("c", "i", "i", "d", "c")
)
),
hip_rt(1, 1)
)
# Read the first 4 rows
data$yield(4)
# Read the next 2 rows
data$yield(2)
# Reset and then read the first 4 rows again
data$reset()
data$yield(4)