get_number_of_observations_per_individual#
- pharmpy.modeling.get_number_of_observations_per_individual(model)[source]#
Number of observations for each individual
- Parameters:
model (Model) – Pharmpy model
- Returns:
pd.Series – Number of observations in the model dataset
Examples
>>> from pharmpy.modeling import get_number_of_observations_per_individual, load_example_model >>> model = load_example_model("pheno") >>> get_number_of_observations_per_individual(model) ID 1 2 2 3 3 3 4 3 5 3 6 3 7 3 8 3 9 4 10 3 11 1 12 3 13 2 14 4 15 2 16 3 17 3 18 4 19 3 20 3 21 3 22 2 23 3 24 3 25 6 26 2 27 2 28 1 29 1 30 2 31 1 32 3 33 2 34 2 35 2 36 3 37 2 38 4 39 3 40 2 41 3 42 2 43 1 44 3 45 3 46 1 47 1 48 5 49 3 50 4 51 3 52 3 53 2 54 4 55 1 56 1 57 2 58 3 59 3 Name: observation_count, dtype: int64
Notes
For NONMEM models this is the individuals and number of observations of the active dataset, i.e. after filtering of IGNORE and ACCEPT and removal of individuals with no observations.
See also
get_number_of_individuals
Get the number of individuals in a dataset
get_number_of_observations_per_individual
Get the number of observations per individual in a dataset