vcd2df {vcd2df} | R Documentation |
Read a value change dump (VCD) file and convert it to a data frame.
Description
Read a value change dump (VCD) file and convert it to a data frame.
Usage
vcd2df(f_name)
Arguments
f_name |
The path of a VCD (value change dump) file. |
Value
A data frame with the values of the variables at each time point.
Examples
library(vcd2df)
f_name <- tempfile()
vcd <- 'https://github.com/vcd2df/vcd_ex/raw/refs/heads/main/nerv.vcd'
download.file(url = vcd, destfile = f_name)
df <- vcd2df(f_name)
[Package vcd2df version 1.0.1 Index]