Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

R Questions You will explore the first 100,000 digits of pi(3.1415....). (a). Using an internet search, locate a text file that contains the first 100,000

R Questions

You will explore the first 100,000 digits of pi(3.1415....).

(a). Using an internet search, locate a text file that contains the first 100,000 digits of pi. If this file includes the decimal point, remove this in a text editor. [List website where you got the file]

(b). Read the file into R and break it into an array of 100,000 elements. The below code should be helpful.[code]

piisfun = readLines("file location", warn = FALSE)

digits = as.numeric(unlist(strsplit(piisfun,"")))

(c).What percent of the first 100,000 digits of pi are 7s? [code, answer]

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 Processing Fundamentals Design And Implementation

Authors: KROENKE DAVID M.

1st Edition

8120322258, 978-8120322257

More Books

Students also viewed these Databases questions

Question

What is the basis for Security Concerns in Cloud Computing?

Answered: 1 week ago

Question

Describe the three main Cloud Computing Environments.

Answered: 1 week ago