These stats don't exist by default but you can build them.
For In Position use these columns:
cnt_f_fold_vs_bet_limped_pot_ip: sum(if[lookup_actions_p.action = 'C' and not(holdem_hand_player_statistics.flg_p_face_raise) and holdem_hand_player_detail.flg_f_has_position and lookup_actions_f.action = 'F', 1, 0])
cnt_f_face_bet_limped_pot_ip: sum(if[lookup_actions_p.action = 'C' and not(holdem_hand_player_statistics.flg_p_face_raise) and holdem_hand_player_detail.flg_f_has_position and holdem_hand_player_detail.amt_f_bet_facing > 0, 1, 0])
For Out of Position use these columns:
cnt_f_fold_vs_bet_limped_pot_oop: sum(if[lookup_actions_p.action = 'X' and not(holdem_hand_player_detail.flg_f_has_position) and not(holdem_hand_player_statistics.flg_p_face_raise) and lookup_actions_f.action = 'XF', 1, 0])
cnt_f_face_bet_limped_pot_oop: sum(if[lookup_actions_p.action = 'X' and not(holdem_hand_player_detail.flg_f_has_position) and not(holdem_hand_player_statistics.flg_p_face_raise) and lookup_actions_f.action LIKE 'X_%', 1, 0])
For more on creating custom statistics please see
this tutorial.