datawizard 0.3.0
-
New functions:
-
To find or remove empty rows and columns in a data frame:
empty_rows()
,
empty_columns()
,remove_empty_rows()
,remove_empty_columns()
, and
remove_empty
. -
To check for names:
object_has_names()
andobject_has_rownames()
. -
To rotate data frames:
data_rotate()
. -
To reverse score variables:
data_reverse()
. -
To merge/join multiple data frames:
data_merge()
(or its alias
data_join()
). -
To cut (recode) data into groups:
data_cut()
. -
To replace specific values with
NA
s:convert_to_na()
. -
To replace
Inf
andNaN
values withNA
s:replace_nan_inf()
.
-
-
Arguments
cols
,before
andafter
indata_relocate()
can now also be
numeric values, indicating the position of the destination column.