79366964

Date: 2025-01-18 10:32:52
Score: 0.5
Natty:
Report link

Use sprintf("var_%02d", n) instead of paste0("var_", n) to name the columns, to ensure that leading zeroes are added to the column names (e.g. var_01, var_02, etc). Ordering should be easier after that (if needed at all). Change the 2 in %02d to the appropriate number of digits the numbering should have.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
Posted by: Zé Loff