Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please answer using R code # load packages library(tibble) # set seed set.seed (35406) = #define function to simulate data gen_nonlin_data function(sample_size 200) { X

Please answer using R codeimage text in transcribedimage text in transcribedimage text in transcribed

# load packages library("tibble") # set seed set.seed (35406) = #define function to simulate data gen_nonlin_data function(sample_size 200) { X = runifan sample_size, min = 0, max = 10) mu = 0 + 3 * 2 ^ (x - 1) eps = rnorm(n sample_size, mean = O, sd = 100) y = mu + eps tibble(x, y) } # simulate (training) data sim_trn gen_nonlin_data() = # check data (numerically) head (sim_trn) # check data (visually) # plot(sim_trn, pch = 20, col # grid() "darkgrey") The code above simulates data from the data generating process defined in the function gen_nonlin_data and stores it in sim_trn. Specifically, the gen_nonlin_data function generates data according to the probability model Y = u(x) + where . . u(x) = Be + B1. 221 Bo=0 Bi=3 N(0, 1002) U(0,10) EN Fit two linear models to the training data: Model 1: Y = Bo + B1x + Model 2: Y = Bo + B1. 221 + With each, calculate 1 - B1 where is the estimate of the B1 coefficient defined in the model being considered Bi is the true value of B1 for the (in this case known) data generating process Hints and Notes: Do not modify the data. Train the model using the data as-is by specifying the model through R's formula syntax. The code to plot the data is commented out, but you should still run it. (It is commented for internal PrairieLearn reasons.) Model 1: 1 B1 = number (rtol=0.0001, atol=1e-08) Model 2: B1 B1 = number (rtol=0.0001, atol=1e-08) # load packages library("tibble") # set seed set.seed (35406) = #define function to simulate data gen_nonlin_data function(sample_size 200) { X = runifan sample_size, min = 0, max = 10) mu = 0 + 3 * 2 ^ (x - 1) eps = rnorm(n sample_size, mean = O, sd = 100) y = mu + eps tibble(x, y) } # simulate (training) data sim_trn gen_nonlin_data() = # check data (numerically) head (sim_trn) # check data (visually) # plot(sim_trn, pch = 20, col # grid() "darkgrey") The code above simulates data from the data generating process defined in the function gen_nonlin_data and stores it in sim_trn. Specifically, the gen_nonlin_data function generates data according to the probability model Y = u(x) + where . . u(x) = Be + B1. 221 Bo=0 Bi=3 N(0, 1002) U(0,10) EN Fit two linear models to the training data: Model 1: Y = Bo + B1x + Model 2: Y = Bo + B1. 221 + With each, calculate 1 - B1 where is the estimate of the B1 coefficient defined in the model being considered Bi is the true value of B1 for the (in this case known) data generating process Hints and Notes: Do not modify the data. Train the model using the data as-is by specifying the model through R's formula syntax. The code to plot the data is commented out, but you should still run it. (It is commented for internal PrairieLearn reasons.) Model 1: 1 B1 = number (rtol=0.0001, atol=1e-08) Model 2: B1 B1 = number (rtol=0.0001, atol=1e-08)

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

Time Series Databases New Ways To Store And Access Data

Authors: Ted Dunning, Ellen Friedman

1st Edition

1491914726, 978-1491914724

More Books

Students also viewed these Databases questions