Packaged version of the core functionalities (vector, matrix and list manipulations; math) of the formerly used CodeAndRoll (v1). A standalone set of more than >130 productivity functions.
Used by MarkdownReports, ggExpress, Seurat.utils.
CodeAndRoll2 depends on:
... and provides functions for
Install directly from GitHub via devtools with one R command:
# install.packages("devtools"); # If you don't have it.
require("devtools")
# Install dependencies
devtools::install_github(repo = "vertesy/Stringendo", upgrade = F)
devtools::install_github(repo = "vertesy/ReadWriter", upgrade = F)
# Install CodeAndRoll2
devtools::install_github(repo = "vertesy/CodeAndRoll2", upgrade = F)
...then simply load the package:
require("CodeAndRoll2")
Alternatively, you simply source it from the web. This way function help will not work, and you will have no local copy of the code on your hard drive.
source("https://raw.githubusercontent.com/vertesy/CodeAndRoll2/master/CodeAndRoll2/R/CodeAndRoll2.R")
If you encounter a bug, something doesn't work or unclear, please let me know by raising an issue on CodeAndRoll2 – Please check if it has been asked.
(of connected functions)
flowchart LR
zigzagger(zigzagger) --> intermingle2vec(intermingle2vec)
which_names_grep(which_names_grep) --> grepv(grepv)
table_fixed_categories(table_fixed_categories) --> pc_TRUE(pc_TRUE)
symdiff.ls(symdiff.ls) --> symdiff(symdiff)
rowSEM(rowSEM) --> sem(sem)
rowGeoMeans(rowGeoMeans) --> geomean(geomean)
rowCV(rowCV) --> cv(cv)
movingSEM(movingSEM) --> sem(sem)
merge_numeric_df_by_rn(merge_numeric_df_by_rn) --> symdiff(symdiff)
merge_ls_of_named_vec_as_df_cols(merge_ls_of_named_vec_as_df_cols) --> unlapply(unlapply)
merge_dfs_by_rn(merge_dfs_by_rn) --> idim(idim)
merge_1col_dfs_by_rn(merge_1col_dfs_by_rn) --> union.ls(union.ls)
median_normalize(median_normalize) --> colMedians(colMedians)
mdlapply2df(mdlapply2df) --> arr.of.lists.2.df(arr.of.lists.2.df)
mdlapply2df(mdlapply2df) --> copy.dimension.and.dimnames(copy.dimension.and.dimnames)
mdlapply(mdlapply) --> copy.dimension.and.dimnames(copy.dimension.and.dimnames)
ls2categvec(ls2categvec) --> unlapply(unlapply)
list2fullDF.presence(list2fullDF.presence) --> matrix.fromNames(matrix.fromNames)
list2fullDF.byNames(list2fullDF.byNames) --> matrix.fromNames(matrix.fromNames)
list.2.replicated.name.vec(list.2.replicated.name.vec) --> unlapply(unlapply)
intermingle.cbind(intermingle.cbind) --> matrix.fromNames(matrix.fromNames)
intermingle.cbind(intermingle.cbind) --> intermingle2vec(intermingle2vec)
intermingle.cbind(intermingle.cbind) --> symdiff(symdiff)
intermingle.cbind(intermingle.cbind) --> idim(idim)
imovingSEM(imovingSEM) --> sem(sem)
idimnames(idimnames) --> idim(idim)
getRows(getRows) --> which_names(which_names)
which_names(which_names) --> as.logical.wNames(as.logical.wNames)
getCols(getCols) --> which_names(which_names)
getCols(getCols) --> symdiff(symdiff)
fix_tibble_lists(fix_tibble_lists) --> get_col_types(get_col_types)
df.remove.empty.rows.and.columns(df.remove.empty.rows.and.columns) --> pc_TRUE(pc_TRUE)
df.remove.empty.rows.and.columns(df.remove.empty.rows.and.columns) --> idim(idim)
sem(sem) --> na.omit.strip(na.omit.strip)
colSEM(colSEM) --> sem(sem)
colGeoMeans(colGeoMeans) --> geomean(geomean)
colCV(colCV) --> cv(cv)
as.list.df.by.row(as.list.df.by.row) --> zero.omit(zero.omit)
as.list.df.by.row(as.list.df.by.row) --> na.omit.strip(na.omit.strip)
as.list.df.by.col(as.list.df.by.col) --> zero.omit(zero.omit)
as.list.df.by.col(as.list.df.by.col) --> na.omit.strip(na.omit.strip)
any.duplicated.rownames.ls.of.df(any.duplicated.rownames.ls.of.df) --> any.duplicated(any.duplicated)
created by convert_igraph_to_mermaid()
Updated: 2024/10/23 18:22
getScriptName()
Get Current Script Name or Basename of Output Directory. This function attempts to retrieve the name of the currently opened script in the RStudio editor. If the script name cannot be obtained or if the rstudioapi
package is not available, it returns the basename of the directory specified by OutDir
. @return A string containing the basename of the current script or the basename of OutDir
if the script name is unavailable. @importFrom rstudioapi getSourceEditorContext
getProject()
getProject. Try to get the project name you are wokring on in Rstudio.
()
Save Command History to "command_history.date.scriptname.txt". This function saves the command history of the current R session to a text file. The file name includes the current date and, if available, the name of the current R script (when running in RStudio). The file is saved in the current working directory. @return Nothing is returned, but the file path is printed to the console. @importFrom rstudioapi getSourceEditorContext @examples \dontrun{ savehistory_2() }
vec.fromNames()
vec.fromNames. Create a vector from a vector of names.
list.fromNames()
Create a Named List from a Character Vector of Names, or a names of an object. This function takes a character vector of names and creates a list where each element is named according to the character vector and filled with a specified value.
vec.from.template()
vec.from.template. Create a vector from a names of another vector / list / etc.
list.from.template()
list.from.template. Create an empty list from a template list, copying names and filling values with NA.
matrix.fromNames()
matrix.fromNames. Create a matrix from 2 vectors defining the row- and column names of the matrix. Default fill value: NA.
data.frame.fromNames()
data.frame.fromNames. Create a data frame from 2 vectors defining the row- and column names of the data frame Default fill value: NA.
matrix.fromVector()
matrix.fromVector. Create a matrix from values in a vector repeated for each column / each row. Similar to rowNameMatrix and colNameMatrix.
array.fromNames()
array.fromNames. Create an N-dimensional array from N vectors defining the row-, column, etc names of the array.
what()
what. A better version of is(). It can print the first "printme" elements.
idim()
idim. A dim() function that can handle if you pass on a vector: then, it gives the length.
is.list2()
Test if object is a list. The 'is.list()' function fails on tibbles: it returns TRUE, as if it were a list. This distiguishes. Thaat's why we need this function.
idimnames()
idimnames. A dimnames() function that can handle if you pass on a vector: it gives back the names.
printEveryN()
printEveryN. Report iterator value at every e.g. 1000
printProgress()
Print Loop Progress. Prints the progress of a loop as a number and percentage.
table_fixed_categories()
table_fixed_categories. Generate a table() with a fixed set of categories. It fills up the table with missing categories, that are relevant when comparing to other vectors.
table_decreasing()
Frequency Table with Sorting Option. This function generates a frequency table of the input vector vec
and allows the option to sort the table in decreasing or increasing order. It handles NA values.
table_decreasing_hybrid()
Frequency Table with Hyrid Sorting: you can sort by frequency and by specified value. This function generates a frequency table of the input vector vec
and displays the table sorted by frequency and by a set of specified values. It handles NA values.
getCategories()
getCategories. Extract unique entries with a corresponding name.
nr.unique()
Count the number of unique values. Count the number of unique values
grepv()
grep that returns the value of the match.. grep returning the value. A character string containing a regular expression (or character string for fixed = TRUE) to be matched in the given character vector. Coerced by as.character to a character string if possible. If a character vector of length 2 or more is supplied, the first element is used with a warning. Missing values are allowed except for regexpr, gregexpr and regexec.
most_frequent_elements()
most_frequent_elements. Show the most frequent elements of a table.
count_occurrence_each_element()
count_occurrence_each_element. Count the number of times each element occurs in the full vector, AND give it back as a vector, that is the same length as the input vector, each element corresponding one-by-one.
top_indices()
top_indices. Returns the positions of the n
highest values in x
. For equal values, it maintains the original order.
trail()
trail. A combination of head()
and tail()
: Returns a vector containing the first N
and last N
elements of vector.
sort.decreasing()
sort.decreasing. Sorts vec
in decreasing order.
# as.named.vector.df()
as.named.vector.df. Convert any column or row of a dataframe into a vector, keeping the corresponding dimension name.
as.named.vector.2colDF()
as.named.vector.2colDF. Convert a 2-column dataframe (value, name) into a named vector. Use for simple tibbles.
# df.col.2.named.vector()
df.col.2.named.vector. Convert a dataframe column into a vector, keeping the corresponding dimension name.
df.row.2.named.vector()
df.row.2.named.vector. Convert a dataframe row into a vector, keeping the corresponding dimension name.
tibble_summary_to_namedVec()
tibble_summary_to_namedVec. Convert a key-value tibble into a named vector (as opposed to using rownames).
as_tibble_from_namedVec()
as_tibble_from_namedVec. Convert a vector with names into a tibble, keeping the names as rownames.
unique.wNames()
Unique elements. Get the unique elements of a vector, keep their names
as.numeric.wNames.character()
as.numeric.wNames.character. Converts (1) a 'character' v. into a numeric v., or a 'factor' v. as as.numeric(as.character(vec)) and preserves the original names. The old 'as.numeric.wNames()' is deprecated as it was not clearly documented that it converts via facotr in any case. Code saved at the end.
as.numeric.wNames.factor()
as.numeric.wNames.factor. Turn any vector into numeric categories as.numeric(as.factor(vec)) Forerly as.factor.numeric
as.character.wNames()
as.character.wNames. Converts your input vector into a character vector, and puts the original character values into the names of the new vector, unless it already has names.
translate()
Translate a set of values to a new set using a dictionary. Replaces a set of values in a vector with another set of values, so it translates your vector. Oldvalues and newvalues have to be 1-to-1 corresponding vectors. 'chartr("a-cX", "D-Fw", x) does the same as above in theory, but it did not seem very robust regarding your input...'
rescale()
rescale. Linear transformation to a given range of values.
fractions()
fractions. x/sum(x)
flip_value2name()
flip_value2name. Flip the values and the names of a vector with names.
sortbyitsnames()
sortbyitsnames. Sort a vector or list by the alphanumeric order of its names (instead of its values).
any.duplicated()
any.duplicated. How many entries are duplicated?.
which.duplicated()
which.duplicated. Which values are duplicated?.
which.NA()
which.NA. Which values are NA?.
pad.na()
pad.na. This function fills up a vector to a given length by appending NA-values at the end. If the input vector's length is less than the provided length, the function pads the vector with NA. If the vector's length is already equal to or greater than the given length, no change will be made.
clip.at.fixed.value()
clip.at.fixed.value. Signal clipping. Cut values in a distribution, above or below a threshold.
clip.outliers.at.percentile()
clip.outliers.at.percentile. Signal clipping based on the input data's distribution. It clips values in a distribution above or below the extreme N% of the distribution.
as.logical.wNames()
as.logical.wNames. Converts your input vector into a logical vector, and puts the original character values into the names of the new vector, unless it already has names.
col2named.vec.tbl()
col2named.vec.tbl. Convert a 2-column table(data frame) into a named vector. 1st column will be used as names.
topN.dfCol()
topN.dfCol. Find the n highest values in a named vector.
bottomN.dfCol()
bottomN.dfCol. Find the n lowest values in a named vector.
split_vec_to_list_by_N()
Split a Vector into a List by Every N-th Element. This function divides a given vector into chunks of size by
(default is 9). The resulting list contains vectors of the specified chunk size or smaller.
zigzagger()
zigzagger. Mix entries so that they differ.
numerate()
Formats a Sequence of Numbers with Zero Padding. This function generates a sequence of numbers between two specified values, optionally padding them with leading zeros to a specified length. It is useful for creating numeric sequences with consistent character lengths.
MaxN()
MaxN. Find second (third…) highest/lowest value in vector.
cumsubtract()
cumsubtract. Cumulative subtraction, opposite of cumsum().
sumBySameName()
sumBySameName. Sum up vector elements with the same name.
checkMinOverlap()
Check Minimum Overlap Between Two Vectors. Checks if the overlap between two character vectors is at least a specified percentage of the shorter vector. Stops execution with an error if the condition is not met.
which_names()
which_names. Return the names where the input vector is TRUE. The input vector is converted to logical.
which_names_grep()
which_names_grep. Return the vector elements whose names partially match a pattern.
na.omit.strip()
na.omit.strip. Calls na.omit() and returns a clean vector. Omit NA values from a vector and return a clean vector without any spam.
inf.omit()
inf.omit. Omit infinite values from a vector.
zero.omit()
zero.omit. Omit zero values from a vector.
pc_TRUE()
pc_TRUE. Calculates the percentage of true values in a logical vector, parsed as text.
pc_overlap()
Calculate Percentage Overlap Between Two Vectors. Computes the percentage of overlap between two vectors based on the specified basis of calculation.
pc_in_total_of_match()
pc_in_total_of_match. Calculates the percentage of a certain value within a vector or table.
remove_outliers()
remove_outliers. Remove values that fall outside the trailing probs
percentiles of the distribution.
simplify_categories()
simplify_categories. Replace all occurrences of replaceit
in category_vec
with to
.
colSubtract()
colSubtract. Subtract a vector (length = nr. columns) column by column from each value of the matrix.
rowSubtract()
rowSubtract. Subtract a vector (length = nr. rows) row by row from each value of the matrix
colDivide()
Row-wise division of a matrix by a column vector. Each element of the matrix is divided by the corresponding element of the vector that matches the column of the matrix element. This is typically used to normalize data, for example, to scale values in each row by certain factors like totals or means. Soruce \url{https://stackoverflow.com/questions/20596433/how-to-divide-each-row-of-a-matrix-by-elements-of-a-vector-in-r}.
colMutliply()
colMutliply. Multiply by column. See more: https://stackoverflow.com/questions/20596433/how-to-divide-each-row-of-a-matrix-by-elements-of-a-vector-in-r.
rowDivide()
rowDivide. Divide by row.
rowMutliply()
rowMutliply. Mutliply by row.
row.Zscore()
row.Zscore. Calculate Z-score over rows of data frame.
TPM_normalize()
TPM_normalize. Normalize each column to 1 million.
median_normalize()
median_normalize. Normalize each column to the median of all the column-sums.
mean_normalize()
mean_normalize. Normalize each column to the median of the columns.
rowMin()
rowMin. Calculates the minimum of each row of a numeric matrix / data frame.
colMin()
colMin. Calculates the minimum of each column of a numeric matrix / data frame.
rowMax()
rowMax. Calculates the maximum of each row of a numeric matrix / data frame.
colMax()
colMax. Calculates the maximum of each column of a numeric matrix / data frame.
rowMedians()
rowMedians. Calculates the median of each row of a numeric matrix / data frame.
colMedians()
colMedians. Calculates the median of each column of a numeric matrix / data frame.
rowGeoMeans()
rowGeoMeans. Calculates the median of each row of a numeric matrix / data frame.
colGeoMeans()
colGeoMeans. Calculates the median of each column of a numeric matrix / data frame.
rowCV()
rowCV. Calculates the CV of each ROW of a numeric matrix / data frame.
colCV()
colCV. Calculates the CV of each column of a numeric matrix / data frame.
rowVariance()
rowVariance. Calculates the CV of each ROW of a numeric matrix / data frame.
colVariance()
colVariance. Calculates the CV of each column of a numeric matrix / data frame.
rowSEM()
rowSEM. Calculates the SEM of each row of a numeric matrix / data frame.
colSEM()
colSEM. Calculates the SEM of each column of a numeric matrix / data frame.
rowSD()
rowSD. Calculates the SEM of each row of a numeric matrix / data frame.
colSD()
colSD. Calculates the SD of each column of a numeric matrix / data frame.
rowIQR()
rowIQR. Calculates the IQR of each row of a numeric matrix / data frame.
colIQR()
colIQR. Calculates the IQR of each column of a numeric matrix / data frame.
rowQuantile()
rowQuantile. Calculates the quantile of each row of a numeric matrix / data frame.
colQuantile()
colQuantile. Calculates the quantile of each column of a numeric matrix / data frame.
cbind_vectors_by_names()
Bind two named vectors by matching names. Combines two named vectors into a data frame by matching their names. Missing values are filled with NA.
sortEachColumn()
sortEachColumn. Sort each column of a numeric matrix / data frame.
sort_matrix_rows()
Sort matrix or data frame by a column or row names. Sorts a numeric matrix or data frame by a specified column or by row names. The function can only handle sorting by a single column. It offers options to sort in increasing or decreasing order, and to control the placement of NA
values.
rownames.trimws()
rownames.trimws. Trim whitespaces from the rownames.
colsplit()
colsplit. Split a data frame by a factor corresponding to columns.
rowsplit()
rowsplit. Split a data frame by a factor corresponding to columns.
which.max.multi()
Get the Column Name corresponding to the Maximum Value in each Row (handles ambiguous matches). This function takes a numeric matrix as input and returns a named vector where each element corresponds to a row of the matrix. The names of the vector are the row names of the matrix, and the values are the column names where the maximum value of each row is found. If there are multiple columns with the maximum value in a row, the value for that row will be set to multi_max_str
. If na.remove
is set to TRUE
, NA values will be removed before finding the maximum value.
select_rows_and_columns()
select_rows_and_columns. Subset rows and columns. It checks if the selected dimension names exist and reports if any of those they aren't found.
getRows()
getRows. Returns a subset of rows based on their names and optionally removes rows with only NA or zero values. Reports the number of missing rows.
getCols()
getCols. Returns a subset of columns based on their names and optionally removes columns with only NA or zero values. Reports the number of missing columns.
get.oddoreven()
get.oddoreven. Returns either odd or even indexed rows or columns from a data frame.
merge_dfs_by_rn()
merge_dfs_by_rn. Merge any data frames by rownames. Required plyr package.
merge_1col_dfs_by_rn()
merge_1col_dfs_by_rn. A function that merges single-column data frames based on rownames.
merge_numeric_df_by_rn()
merge_numeric_df_by_rn. Merge 2 numeric data frames by rownames.
merge_2_named_vec_as_df()
merge_2_named_vec_as_df. Merge two named vectors by names, into a dataframe with 2 columns.
merge_ls_of_named_vec_as_df_cols()
merge_ls_of_named_vec_as_df_cols. Merge any number of named vectors (presented as a list) by names, into a dataframe
get_col_types()
Extract and Display Column Types of a Data Frame or Tibble. This function returns the primary class/type of each column in a data frame or tibble. Additionally, it can print a summary of the column types.
fix_tibble_lists()
Convert List Columns of a Tibble to String Vectors. Converts columns of type list
in a tibble or data frame to string vectors. It combines list elements into a single string per cell, using a specified separator.
rotate_matrix()
Rotate a Matrix by 90 Degrees. Rotates a given numeric matrix 90 degrees in a specified direction. The rotation can be either clockwise or counterclockwise, determined by the clockwise
parameter.
na.omit.mat()
Omit Rows with NA Values from a Matrix. Removes rows from a matrix based on the presence of NA values. Can remove rows with any NA values or only those completely filled with NAs.
remove.na.rows()
remove.na.rows. Cols have to be a vector of numbers corresponding to columns.
remove.na.cols()
remove.na.cols. Cols have to be a vector of numbers corresponding to columns.
df.remove.empty.rows.and.columns()
Remove empty rows and columns from a data frame.. This function takes a data frame and a threshold value, and removes all rows and columns that contain only zeros or the threshold value.
rowNameMatrix()
rowNameMatrix. Create a copy of your matrix, where every entry is replaced by the corresponding row name. Useful if you want to color by row name in a plot (where you have different number of NA-values in each row).
colNameMatrix()
colNameMatrix. Create a copy of your matrix, where every entry is replaced by the corresponding column name. Useful if you want to color by column name in a plot (where you have different number of NA-values in each column).
copy.dimension.and.dimnames()
copy.dimension.and.dimnames. Copy the dimension and dimnames of a 1D vector to a 2D array.
mdlapply()
mdlapply. A wrapper for lapply()
that works on multidimensional arrays.
arr.of.lists.2.df()
arr.of.lists.2.df. Simplify 2D-list-array to a DF.
mdlapply2df()
mdlapply2df. Multi dimensional lapply + arr.of.lists.2.df (simplify 2D-list-array to a DF).
any.duplicated.rownames.ls.of.df()
any.duplicated.rownames.ls.of.df. Check if there are any duplocated rownames in a list of dataframes.
intersect.ls()
intersect.ls. Intersect any number of lists.
union.ls()
union.ls. Intersect any number of list elements. Faster than reduce.
symdiff.ls()
symdiff.ls. Calculate symmetric difference on a list (of 2 vectors).
setdiff.ls()
setdiff.ls. Calculate set difference on a list (of 2 vectors).
unlapply()
Like sapply, but with names preserved. Help in some other cases too.. Do an lapply()
, then unlist()
, with preserving the list element names.
list.wNames()
list.wNames. Create a list with names from ALL variables you pass on to the function.
as.list.df.by.row()
as.list.df.by.row. Split a dataframe into a list by its columns.
as.list.df.by.col()
as.list.df.by.col. Split a dataframe into a list by its rows.
reorder.list()
reorder.list. Reorder elements of lists in your custom order of names / indices.
range.list()
range.list. Calculates the range of values in the entire a list.
intermingle2lists()
intermingle2lists. Combine 2 lists (of the same length) so that form every odd and every even element of a unified list. Useful for side-by-side comparisons, e.g. in wstripchart_list().
as.listalike()
as.listalike. Converts a vector to a list with the same dimensions as a given list.
reverse.list.hierarchy()
Reverse the Hierarchy of a List. This function reverses the hierarchy of a given, 2 level, nested list. The function will ensure that all lists at the same level have the same names, and then transpose the structure, creating a new list for each unique name. Any missing elements in the original lists are not included in the final output. The result is a list where the top-level names are derived from the unique names found at the lower levels of the input list.
list2fullDF.byNames()
list2fullDF.byNames. Converts a list to a full matrix, with rows and columns named by the elements of the list.
list2fullDF.presence()
list2fullDF.presence. Converts a list to a full matrix, with rows and columns named by the elements of the list. The matrix will contain a 1 in each cell where the corresponding element of the list is present, and a 0 otherwise.
splitbyitsnames()
splitbyitsnames. Split a list by its names.
splititsnames_byValues()
Split the names of list by its values.. Split the names of a list by its its values.
intermingle2vec()
intermingle2vec. Combine 2 vectors (of the same length) so that form every odd and every even element of a unified vector.
intermingle.cbind()
intermingle.cbind. Combine 2 data frames (of the same length) so that form every odd and every even element of a unified list. Useful for side-by-side comparisons, e.g. in wstripchart_list().
ls2categvec()
ls2categvec. Converts a list to a vector repeating list-element names, while vector names are the list elements.
list.2.replicated.name.vec()
list.2.replicated.name.vec. Converts a list to a vector, with list elements names replicated as many times as many elements each element had.
symdiff()
Symmetric difference. Quasi symmetric difference of any number of vectors.
iround()
iround. Rounds a value to the significant amount of digits. Its a wrapper for signif().
modus()
modus. Calculates the mode (modus) of a numeric vector (it excludes NA-s by default). https://en.wikipedia.org/wiki/Mode_(statistics)
cv()
cv. Calculates the coefficient of variation (CV) for a numeric vector (it excludes NA-s by default).
sem()
sem. Calculates the standard error of the mean (SEM) for a numeric vector (it excludes NA-s by default).
fano()
fano. Calculates the fano factor on a numeric vector (it excludes NA-s by default).
geomean()
geomean. Calculates the geometric mean of a numeric vector (it excludes NA-s by default).
mean_of_log()
mean_of_log. Calculates the mean of the log_k of a numeric vector (it excludes NA-s by default).
movingAve()
Moving / rolling average. Calculates the moving / rolling average of a numeric vector.
movingAve2()
Moving / rolling average (v2, filter). Calculates the moving / rolling average of a numeric vector, using filter()
.
movingSEM()
movingSEM. Calculates the moving / rolling standard error of the mean (SEM) on a numeric vector.
imovingSEM()
imovingSEM. Calculates the moving / rolling standard error of the mean (SEM). It calculates it to the edge of the vector with incrementally smaller window-size.
dput_pretty()
Pretty Printing of R Objects (pretty_dput). This function modifies the output of the traditional dput() function so that each key-value pair in a vector appears on a new line. It's useful for creating more readable output.
as.numeric.wNames.deprecated()
as.numeric.wNames.deprecated. Converts any vector into a numeric vector, and puts the original character values into the names of the new vector, unless it already has names. Useful for coloring a plot by categories, name-tags, etc.
as.factor.numeric()
as.factor.numeric.deprecated. Turn any vector into numeric categories as.numeric(as.factor(vec))
In 2021, function libraries got reorganized as below: