Add rows to dataframe with 2 set columns and 100 other columns to 0 or NA depending on the column type. 0 for numeric columns and NA for character columns.
Original Dataframe:
 date   name   score1 score2 score3 last_name
 1/1/16 Bill      3     3       3    Johnson              
 1/1/16 Angela    3     3       3    Harris
 1/1/16 Bob       3     3       3    Johnson                                       
 1/2/16 Bill      3     3       3    Johnson                                        
 1/2/16 Angela    3     3       3    Harris    
The second Dataframe:
 date     name  
1/3/16   George
1/3/16   Harold
Desired Dataframe
 date   name   score1 score2 score3 last_name
 1/1/16 Bill      3     3       3    Johnson              
 1/1/16 Angela    3     3       3    Harris
 1/1/16 Bob       3     3       3    Johnson                                       
 1/2/16 Bill      3     3       3    Johnson                                        
 1/2/16 Angela    3     3       3    Harris  
 1/3/16 George    0     0       0    NA               
 1/3/16 Harold    0     0       0    NA                                    
