I would like to split a big dataframe into several smaller dataframes according to the value from the first column if that's possible, I didn't find it online. Example, I have this:
DF
Column1 Column2 Column3 Column4 
  A       1       2       1
  A       1       1       2
  A       3       2       2
  B       2       1       2
  B       3       1       1
split this into :
DF1
Column1 Column2 Column3 Column4 
  A       1       2       1
  A       1       1       2
  A       3       2       2
DF2
Column1 Column2 Column3 Column4 
  B       2       1       2
  B       3       1       1
 
     
     
    