chosen_lib = tidy(
cpython,
mutate({
is_toxic_new_score: d => +d.is_toxic_new_score,
is_toxic: d => d.is_toxic_new_score >= form2.tog_D ? "Toxic" : "Not Toxic",
cumlines_tag: d => +d.cumlines_tag,
abs_lines_changed: d => +d.abs_lines_changed,
insertions: d => +d.insertions,
deletions: d => +d.deletions,
tot_lines_tag: d => +d.tot_ines_tag,
pct_completion_tag: d=> +d.pct_completion_tag,
diff_by_release_s: d=>+d.diff_by_release_s,
diff_prev_row_tag_auth_sec: d=>+d.diff_prev_row_tag_auth_sec,
Day: d => parseTime(d.Day)
}
)
)