-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanalysis.R
18 lines (16 loc) · 810 Bytes
/
analysis.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
library(readxl)
#read in the data
workbook.file <- "data/SMM Competitor Workbook 5.25.16.xlsx"
ad <- read_excel(workbook.file, sheet="Analytics Dataset")
ml <- read_excel(workbook.file, sheet="Mbrshp Level")
pm <- read_excel(workbook.file, sheet="Pmt Mthd")
sc <- read_excel(workbook.file, sheet="Sales Channel")
o1 <- read_excel(workbook.file, sheet="Offer on 1st Ren Notice")
ei <- read_excel(workbook.file, sheet="Email Indicators")
eo <- read_excel(workbook.file, sheet="EMail Options")
d1 <- read_excel(workbook.file, sheet="Demo_1")
zc <- read_excel(workbook.file, sheet="Zip Code")
kp <- read_excel(workbook.file, sheet="Key people on Membership")
nv <- read_excel(workbook.file, sheet="Num Visits")
cs <- read_excel(workbook.file, sheet="CSIs")
co <- read_excel(workbook.file, sheet="Communication")