model_point#
- model_point()[source]#
The selected model point as a Series
model_point()
looks upmodel_point_table
, and returns as a Series the row whose label is the value ofpoint_id
.Example
In the code below
Projection
refers to theProjection
space:>>> Projection.point_id 1 >>> Projection.model_point() age_at_entry 47 sex M policy_term 10 policy_count 1 sum_assured 622000 Name: 1, dtype: object >>> Projection.point_id = 2 >>> Projection.model_point() age_at_entry 29 sex M policy_term 20 policy_count 1 sum_assured 752000 Name: 2, dtype: object