17  curve_set

Function GET::curve_set() (Myllymäki and Mrkvička 2024, v1.0.7) creates a curve-set, i.e., an R object of S3 class 'curve_set'. Listing 17.1 summarizes the S3 methods for the class 'curve_set' in package GET (v1.0.7),

Listing 17.1: S3 methods GET::*.curve_set
Code
suppressPackageStartupMessages(library(GET))
.S3methods(class = 'curve_set', all.names = TRUE) |> 
  attr(which = 'info', exact = TRUE) |>
  subset.data.frame(subset = (from != 'groupedHyperframe'))
#                  visible                from generic  isS4
# [.curve_set        FALSE registered S3method       [ FALSE
# plot.curve_set     FALSE registered S3method    plot FALSE
# print.curve_set    FALSE registered S3method   print FALSE
# subset.curve_set   FALSE registered S3method  subset FALSE

Package groupedHyperframe (v0.3.2.20251225) does not implement any S3 method to the class 'curve_set'.