model_point¶
- model_point()[source]¶
- The selected model point as a Series - model_point()looks up- model_point_table, and returns as a Series the row whose index is the value of- point_id.- Example - In the code below - Projectionrefers to the- Projectionspace:- >>> Projection.point_id 1 >>> Projection.model_point() age_at_entry 47 sex M policy_term 10 policy_count 86 sum_assured 622000 duration_mth 1 Name: 1, dtype: object >>> Projection.point_id = 2 >>> Projection.model_point() age_at_entry 29 sex M policy_term 20 policy_count 56 sum_assured 752000 duration_mth 210 Name: 2, dtype: object