It reads a file with data exported from AAA. The data are automatically transformed from a wide to a long format (each row has values of X or Y axes for each fan line). The imported tibble can then be used for plotting and statistical analysis.
Usage
read_aaa_data(
file,
coordinates = "cartesian",
format = "long",
na_rm = TRUE,
knots = NULL,
column_names = NULL
)
Arguments
- file
The file or files with AAA data.
- coordinates
A string specifying the coordinate system. Possible values are
"cartesian"
and"polar"
.- format
A string specifying the data format. Possible values are
"long"
and"wide"
(the default is"long"
).- na_rm
Remove NAs.
- knots
The number of spline knots.
- column_names
The names of the columns without including the splines columns.
Value
An object of class tbl_df-class
(a tibble).