Retrieve Indices of Non-Missing Data for a Specific Time Point
Source:R/retrieve_good_data.R
retrieve_good_data.Rd
This function retrieves the indices of non-missing data values at a specific time point from an individual array.
Arguments
- individual_array
A data matrix or data frame representing individual data, where rows correspond to time points and columns correspond to replicates and variables.
- t
The time point for which you want to retrieve non-missing data indices.
- n_replicates
The number of replicates in the data matrix.
Value
A numeric vector containing the indices of non-missing data values
at the specified time point t
. If there are no non-missing values or
only one non-missing value, NULL
is returned.
See also
which
function for finding the indices of non-missing values.