i just waned to select the column 6 to 53 in this data "dd2.survey.data.csv"
but select function doesn't work with that Error
file.raw.items <- file.raw %>% select(7:53) %T>% print
Error in UseMethod("select_") : no applicable method for 'select_' applied to an object of class "character"
getwd()
setwd("C:/Users/bargsang/Desktop")
dir()
dir("dd2.survey.data.csv")
library(tidyverse)
library(magrittr) # %T>%
install.packages("psych")
install.packages("psy")
library(psych) # pca, fa
library(psy) # screeplot
library(dplyr)
library(ggplot2)
library(magrittr)
file.raw <- "dd2.survey.data.csv"
file.raw
file.raw.items <- file.raw %>% select(6:53) %T>% print
##At this moment,
##select function doesn't work. how can i solve it?