Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

We want to copy the murders.csv file from the dslabs package into an existing folder data, which is located in our HarvardX - Wrangling

We want to copy the "murders.csv" file from the dslabs package into an existing folder "data", which is located in our HarvardX-Wrangling projects folder. We first enter the code below into our RStudio console. > getwd()[1]"C:/Users/UNIVERSITY/Documents/Analyses/HarvardX-Wrangling" > filename <- "murders.csv"> path <- system.file("extdata", package = "dslabs") Which of the following commands would NOT successfully copy murders.csv into the folder data? file.copy(file.path(path, "murders.csv"), getwd()) setwd("data") file.copy(file.path(path, filename), getwd()) file.copy(file.path(path, "murders.csv"), file.path(getwd(), "data")) file.location <- file.path(system.file("extdata", package = "dslabs"), "murders.csv") file.destination <- file.path(getwd(), "data") file.copy(file.location, file.destination)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Practical Oracle8I Building Efficient Databases

Authors: Jonathan Lewis

1st Edition

0201715848, 978-0201715842

More Books

Students also viewed these Databases questions

Question

What is meant by underapplied overhead? By overapplied overhead?

Answered: 1 week ago

Question

3.4 Define HRIS and describe its main components.

Answered: 1 week ago