How to modify a data frame which looks like this:
col_name No. Missing row_number
ST_NUM 2 2,4
ST_NAME 0
OWN_OCCUPIED 3 1,3,10
NUM_BEDROOMS 2 1,4
want to convert the above data frame as:
col_name row_number
ST_NUM 2
ST_NUM 4
OWN_OCCUPIED 1
OWN_OCCUPIED 3
OWN_OCCUPIED 10
NUM_BEDROOMS 1
NUM_BEDROOMS 4