
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Create an Empty Data Frame in R
We can create an empty data frame as follows −
> df <- data.frame(Income=double(), Age=integer(), EducationLevel=factor(), MaritalStatus=logical(), StateLiving=character(), stringsAsFactors=FALSE) > str(df) 'data.frame': 0 obs. of 5 variables: $ Income : num $ Age : int $ EducationLevel: Factor w/ 0 levels: $ MaritalStatus : logi $ StateLiving : chr
We can edit this data frame by using −
> edit(df)
This edit command will open a spreadsheet and we can enter the data in the data frame.
Advertisements