Learn R Programming

BasketballAnalyzeR (version 0.5.0)

is.MDSmap: Reports whether x is a 'MDSmap' object

Description

Reports whether x is a 'MDSmap' object

Usage

is.MDSmap(x)

Arguments

x

an object to test.

Value

Returns TRUE if its argument is of class MDSmap and FALSE otherwise.

References

P. Zuccolotto and M. Manisera (2020) Basketball Data Science: With Applications in R. CRC Press.

See Also

MDSmap

Examples

Run this code
# NOT RUN {
data <- subset(Pbox, MIN >= 1500)
data <- data.frame(data$PTS, data$P3M, data$P2M, data$OREB + data$DREB, data$AST,
                   data$TOV,data$STL, data$BLK)
mds <- MDSmap(data)
is.MDSmap(mds)
# }

Run the code above in your browser using DataLab