Copy a matrix from source to destination
Usage
copy_matrix(
destination,
source,
rows_axis,
columns_axis,
name,
rows_reaxis = NULL,
columns_reaxis = NULL,
rename = NULL,
default,
empty = NULL,
relayout = TRUE,
overwrite = FALSE,
eltype = NULL,
bestify = FALSE,
min_sparse_saving_fraction = NULL,
insist = TRUE
)Arguments
- destination
A Daf object to copy to
- source
A Daf object to copy from
- rows_axis
Name of rows axis
- columns_axis
Name of columns axis
- name
Name of the matrix to copy
- rows_reaxis
Optional different rows axis name in the destination
- columns_reaxis
Optional different columns axis name in the destination
- rename
Optional new name for the matrix in the destination
- default
Default value if matrix doesn't exist
- empty
Value to use for filling in missing data
- relayout
Whether to allow relayout
- overwrite
Whether to overwrite if matrix already exists
- eltype
Optional element type to convert to (e.g., "Float64", "Int32"). If NULL, the original type is preserved.
- bestify
Whether to bestify the matrix storage (FALSE by default)
- min_sparse_saving_fraction
Optional minimum sparse saving fraction. If NULL, the default is used.
- insist
Whether to fail if the matrix doesn't exist (TRUE by default)
Details
See the Julia documentation for details.