metaSDTreg (version 0.2.1)

lines.predict_roc: Lines of predicted ROC curve

Description

Plot lines method for objects of class 'predict_roc'.

Usage

# S3 method for predict_roc
lines(x, thr = seq(-10, 10, length = 1000), ...)

Value

Invisible.

Arguments

x

A 'predict_roc' object to plot.

thr

The sequence of thresholds parametrising the ROC curve, if this is a function. Default to a length 1000 sequence from -10 to 10.

...

Addtional arguments passed to lines.

Examples

Run this code
## Declare simulated data as metaSDTdata
metadata <- metaSDTdata(simMetaData, type1='resp', type2='conf', signal='S')

## Fit model to subset of data
fit <- metaSDTreg(A ~ signal,
            data=metadata,
            subset = m <= 20)

## Plot observed type 1 ROC points
plot(predict_roc(metadata, type = '1'), xlim = 0:1, ylim = 0:1)

## Add Model-predicted ROC curve (estimated from subset of data)
lines(predict_roc(fit, type = '1'))

Run the code above in your browser using DataCamp Workspace