After the processing of the data, I have a data set something like this:
And you can find the data set here: http://www.sharecsv.com/s/361731b8a7236a8ae147584e44518872/dfk.csv
In case if you can not access the data, here is a sample:
dfk <- tribble(
  ~group,           ~date,       ~id,         ~share,       ~status,
'FALSE',        'January 20',   '25092',   '0,050904271%',   'A',     
'NA',           'April 19',     '29374',   '60,584652862%',  'B',     
'TRUE',         'January 20',   '22625',   '87,401561145%',  'B',     
'TRUE',         'January 20',   '315618',  '99,697519661%', 'A',     
'FALSE & TRUE', 'January 20',   '31002',   '100%         ',  'C',     
'TRUE',         'April 19',     '21788',   '99,836975729%',  'A',     
'TRUE',         'January 20',   '1362',    '76,418519990%',  'A',     
'NA',           'January 20',   '29374',   '59,873882219%',  'C',     
'TRUE',         'April 19',     '9961',    '45,869691681%',  'A',     
'FALSE',        'January 20',   '62184',   '33,833598912%',  'A', 
)
In the data set, there are only two dates: April 19 and January 20. In addition to this, I have three dimensions that are important for my analysis: group, id, and status. By considering all these variables, I would like to see how the share changed from April 19 to January 20.
I've already shown my desired data in the below image:
I would be happy if you could help me to do this. Thanks in advance.


 
    