Learn R Programming

raptr (version 0.0.3)

print: Print objects

Description

Prints objects.

Usage

# S3 method for AttributeSpace
print(x, ..., header = TRUE)

# S3 method for AttributeSpaces print(x, ..., header = TRUE)

# S3 method for GurobiOpts print(x, ..., header = TRUE)

# S3 method for ManualOpts print(x, ..., header = TRUE)

# S3 method for RapData print(x, ..., header = TRUE)

# S3 method for RapReliableOpts print(x, ..., header = TRUE)

# S3 method for RapResults print(x, ..., header = TRUE)

# S3 method for RapUnreliableOpts print(x, ..., header = TRUE)

# S3 method for RapUnsolved print(x, ...)

# S3 method for RapSolved print(x, ...)

Arguments

x

GurobiOpts, RapUnreliableOpts, RapReliableOpts, RapData, RapUnsolved, RapResults, or RapSolved object.

...

not used.

header

logical should object header be included?

See Also

GurobiOpts, RapUnreliableOpts, RapReliableOpts, RapData, RapUnsolved, RapResults, RapSolved.

Examples

Run this code
# NOT RUN {
# load data
data(sim_ru, sim_rs)
## print classes in package
# GurobiOpts
print(GurobiOpts())
# RapReliableOpts
print(RapReliableOpts())
# RapUnreliableOpts
print(RapUnreliableOpts())
# RapData
print(sim_ru@data)
# RapUnsolved
print(sim_ru)
# RapResults
print(sim_rs@results)
# RapSolved
print(sim_rs)
# }

Run the code above in your browser using DataLab