In R programming, we can directly use the 'list()' function to add data frames to a new list.
In your case,
Mylist <- list(emp.data,std.data)
The above statement will add the two data frames 'emp.data' and 'std.data' to a list called Mylist.
You can access the elements in the above list by using the following code
Mylist[[1]] , Mylist[[2]]
and so on.
If you want to explore more in R programming then watch this R programming tutorial for beginner: