In R programming, data frames are used to store tabular data in the form of rows and columns. Here's an example of how to create a data frame:
main.r284 chars11 lines
Output:
main.r105 chars6 lines
In the above example, we created a data frame df
with four columns name
, age
, gender
, and stringsAsFactors
. You can add additional rows or columns to the data frame using various data manipulation functions available in R. Once you have the data organized in a data frame, you can use various data analysis and visualization functions to extract insights from the data.
gistlibby LogSnag