Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

This question assesses whether you're able to download and import a data set into R, load a library, and run a block of code. Download

image text in transcribed
This question assesses whether you're able to download and import a data set into R, load a library, and run a block of code. Download the data in microfi households.csv , . Follow the steps outlined in lessons 1 and 2 of our online course packet to: 1) Import the data set a into R, saving the data set in an object called microfi_households. 2) Load the tidyverse library & (which you'll need to install first if you haven't already). Then type the commands below into a new script, and run the commands. It's not important that you understand what the commands are doing right now (though you will later). The idea is just to check whether everything is working on your end by running a block of code that produces known behavior, and verifying that you get the correct answer. Here are the commands to run: microfi_households %>% filter(village == 46) %>% summarize(loan_prop = mean(loan) ) %>% round ( 3) Upon running these commands, you should see a three-digit decimal number printed out under the word "loan_prop" in your console. What number do you see? O O X

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

Intermediate Algebra

Authors: Marvin L Bittinger

11th Edition

0321968395, 9780321968395

More Books

Students also viewed these Mathematics questions

Question

Explain Coulomb's law with an example

Answered: 1 week ago

Question

What is operating system?

Answered: 1 week ago

Question

What is Ohm's law and also tell about Snell's law?

Answered: 1 week ago