Plot Distributions

using SignalDetectionModels
model = SDT(; d = 2.0, c = .50, σₛ = 1.5, nₙ = 100)
plot_distributions(model)
Example block output

Plot ROC

using SignalDetectionModels
model = SDT(; d = 2.0, c = 1, σₛ = 1, nₙ = 100)
plot_ROC(model)
Example block output

Plot zROC

using SignalDetectionModels
model = SDT(; d = 2.0, c = 1, σₛ = 1, nₙ = 100)
plot_zROC(model)
Example block output

Plot iso-bias

using SignalDetectionModels
model = SDT(; d = 2.0, c = 1, σₛ = 1.5, nₙ = 100)
plot_iso_bias(model)
Example block output

Plot iso-sensitivity

using SignalDetectionModels
model = SDT(; d = 2.0, c = 1, σₛ = 1.5, nₙ = 100)
plot_iso_sensitivity(model)
Example block output