1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/case-weights.R
\name{new_importance_weights}
\alias{new_importance_weights}
\title{Construct an importance weights vector}
\usage{
new_importance_weights(x = double(), ..., class = character())
}
\arguments{
\item{x}{A double vector.}
\item{...}{Name-value pairs defining attributes}
\item{class}{Name of subclass.}
}
\value{
A new importance weights vector.
}
\description{
\ifelse{html}{\href{https://lifecycle.r-lib.org/articles/stages.html#experimental}{\figure{lifecycle-experimental.svg}{options: alt='[Experimental]'}}}{\strong{[Experimental]}}
\code{new_importance_weights()} is a developer oriented function for constructing
a new importance weights vector. Generally, you should use
\code{\link[=importance_weights]{importance_weights()}} instead.
}
\examples{
new_importance_weights()
new_importance_weights(c(1.5, 2.3, 10))
}
|