Learn R Programming

ambit (version 0.2.3)

my_mse: my_mse

Description

Returns the mean squared error between two vectors

Usage

my_mse(x, y)

Value

Mean square error between the two vectors x and y

Arguments

x

vector

y

vector

Examples

Run this code
#Simulate two vectors of i.i.d.~standard normal data
set.seed(456)
x <- rnorm(100)
y <- rnorm(100)
#Compute the mean squared error between both vectors
my_mse(x,y)

Run the code above in your browser using DataLab