Skip to content

Commit b560b30

Browse files
committedAug 14, 2015
got through step 2 of R titanic Kaggle tutorial
1 parent 2984b48 commit b560b30

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed
 

‎.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.Rproj.user
2+
.Rhistory
3+
.RData

‎kaggle_titanic/titanic_R.R

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
# Assign the training set
3+
train <- "http://s3.amazonaws.com/assets.datacamp.com/course/Kaggle/train.csv"
4+
5+
# Assign the testing set
6+
test <- "http://s3.amazonaws.com/assets.datacamp.com/course/Kaggle/test.csv"
7+
8+
# Make sure to have a look at your training and testing set
9+
print(train)
10+
print(test)

‎ucsb-data-science.github.io.Rproj

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Version: 1.0
2+
3+
RestoreWorkspace: Default
4+
SaveWorkspace: Default
5+
AlwaysSaveHistory: Default
6+
7+
EnableCodeIndexing: Yes
8+
UseSpacesForTab: Yes
9+
NumSpacesForTab: 2
10+
Encoding: UTF-8
11+
12+
RnwWeave: Sweave
13+
LaTeX: pdfLaTeX

0 commit comments

Comments
 (0)
Please sign in to comment.