I have a df that looks like this, with data from Week 1, 2 and 3:
Product   Week   
A         1      
A         3      
B         1   
B         2
I wish to create missing Week rows automatically to get this output:
Product   Week   
A         1 
A         2     
A         3      
B         1   
B         2
B         3
Should be straightforward enough but somehow I cannot get this. Thank you.
 
    