Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Go through the R tutorial on page 2 2 - 2 5 . Especially duplicate table 2 . 3 and 2 . 4 . Understand

Go through the R tutorial on page 22-25. Especially duplicate table 2.3 and 2.4. Understand all the lines of codes appear to tables 2.3 and 2.4.
Execute the steps below as was done in the text book (you do not copy and paste these results to this submission),
housing.df <- read.csv("WestRoxbury.csv", header = TRUE) # load data
dim(housing.df) # find the dimension of data frame
head(housing.df) # show the first six rows
View(housing.df) # show all the data in a new tab
What to submit:
Print out (show) rows between 4th and 12th of the second column only. Copy and paste your code and the print outs from the "Console" panel. Your submission should look like this (the content is different).
> housing.df[1:10,1] # show the first 10 rows of the first column only
[1]344.2412.6330.1498.6331.5337.4359.4320.4333.5409.4

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

Database 101

Authors: Guy Kawasaki

1st Edition

0938151525, 978-0938151524

More Books

Students also viewed these Databases questions