Course
Data Frames
Convert a List to a DataframeCreate an Empty DataframeCombine Two Dataframe into OneChange Column Name of a DataframeExtract Columns From a DataframeDrop Columns in a DataframeReorder Columns in a DataframeSplit DataframeMerge Multiple DataframesDelete Rows From DataframeMake a List of DataframesIntroduction
"Hello World" ProgramAdd Two VectorsFind Sum, Mean and Product of Vector in R ProgrammingTake Input From UserGenerate Random Number from Standard DistributionsSample from a PopulationFind Minimum and MaximumSort a VectorStrings
Concatenate Two StringsFind the Length of a StringCheck if Characters are Present in a StringExtract n Characters From a StringReplace Characters in a StringCompare two StringsConvert Factors to CharactersTrim Leading and Trailing WhitespacesVectors
Concatenate a Vector of StringsCheck if a Vector Contains the Given ElementCount the Number of Elements in a VectorFind Index of an Element in a VectorAccess Values in a VectorAdd Leading Zeros to VectorR Program to Make a List of Dataframes
Example: Make a List of Dataframes in R
# create a data frame
dataframe1 <- data.frame (
Name = c("Juan", "Alcaraz"),
Age = c(22, 15)
)
# create another data frame
dataframe2 <- data.frame (
Name = c("Yiruma", "Bach", "Ludovico"),
Age = c(46, 89, 72)
)
# make a list of dataframe1 and dataframe2
print(list(dataframe1, dataframe2))
Output
[[1]]
Name Age
1 Juan 22
2 Alcaraz 15
[[2]]
Name Age
1 Yiruma 46
2 Bach 89
3 Ludovico 72
In the above example, we have first created two dataframes named: dataframe1 and dataframe2 and made a list of these two dataframes using the list()
function.
list(dataframe1, dataframe2)
Here, we have passed dataframe1 and dataframe2 inside list()
to make a list.
Note: Once the list of dataframes is created, we can access, modify, delete components of the list of dataframes.