R 101: Module 2, Question 3
Both:
data.frame("student"=c("John","Mary"),"id"=c(1,2))
AND
data.frame(student=c("John","Mary"),id=c(1,2))
give the desired result
1
vote
![](https://secure.gravatar.com/avatar/e13e34809d540546bba7e5ee887551b7?size=40&default=https%3A%2F%2Fassets.uvcdn.com%2Fpkg%2Fadmin%2Ficons%2Fuser_70-6bcf9e08938533adb9bac95c3e487cb2a6d4a32f890ca6fdc82e3072e0ea0368.png)
Both:
data.frame("student"=c("John","Mary"),"id"=c(1,2))
AND
data.frame(student=c("John","Mary"),id=c(1,2))
give the desired result