Functions: Workspace Management Flashcards

1
Q

all functions

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

.Rdata files

A

these are the file types that you can save all of your objects to, for loading in or exporting out of R

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

save()

A

Save two objects as a new .RData file

used to save specific objects in your workspace to an .Rdata file. Can be tedious because you have to enter all of the objects in manually

#in the data folder of my current working directory
save(study1.df, score.by.sex, study1.htest,
file = “data/study1.RData”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

save.image()

A

Save my workspace to complete_image.RData in th,e

saves all of the objects in your workspace to an .Rdata file.

#data folder of my working directory
save.image(file = “data/projectimage.RData”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

load()

A

Load objects in study1.RData into my workspace

To load an .RData file, that is, to import all of the objects contained in the .RData file into your current workspace, use the load() function.

load(file = “data/study1.RData”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

rm()

A

Remove huge.df from workspace

To remove objects from your workspace, use the rm() function.

rm(huge.df)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

.txt files

A

While .RData files are great for saving R objects, sometimes you’ll want to export data (usually dataframes) as a simple .txt text file that other programs, like Excel and Shitty Piece of Shitty Shit, can also read. To do this, use the write.table() function.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

write.table()

A

Write the pirates dataframe object to a tab-delimited

#text file called pirates.txt in my working directory

write.table(x = pirates,
file = “pirates.txt”, # Save the file as pirates.txt
sep = “\t”) # Make the columns tab-delimited

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

read.table()

A

Read a tab-delimited text file called mydata.txt

If you have a .txt file that you want to read into R, use the read.table() function.

#from the data folder in my working directory into
#R and store as a new object called mydata

mydata <- read.table(file = ‘data/mydata.txt’, # file is in a data folder in my working directory
sep = ‘\t’, # file is tab–delimited
header = TRUE, # the first row of the data is a header row
stringsAsFactors = FALSE) # do NOT convert strings to factors!!

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

reading files from a URL

A

you can read files into R from a URL by entering the whole URL into the file field of the read.table() function

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

reading SPSS and excel files into R

A

first save them out of those platforms as .txt files and then read them into R

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly