📊 R DataFrames
A DataFrame is one of the most common data structures in R for handling tabular data — like a table with rows and columns.
📖 Key Features
- Stores data in columns of equal length
- Each column can be a different data type (numeric, character, logical, etc.)
- Ideal for data analysis and statistical work
📝 Example: Creating a DataFrame
Console output will appear here...
💡 Tip: Use str(dataframe)
to quickly inspect the structure of a DataFrame.