Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding a legend to a plot

Tags:

plot

r

How to add a legend to the following code that is located outside the plot area. Here is a prodicble code:

par(pty="s")
library(ROCR)
data(ROCR.simple)
pred <- prediction( ROCR.simple$predictions, ROCR.simple$labels )
pred2 <- prediction(abs(ROCR.simple$predictions + 
                    rnorm(length(ROCR.simple$predictions), 0, 0.1)), 
            ROCR.simple$labels)
perf <- performance(pred, "tpr", "fpr" )
perf2 <- performance(pred2, "tpr", "fpr")
# Plot pred 1
plot(perf, col="red")
# plot pred 2
plot(perf2, add = TRUE, col="blue")

Any suggestions would be appreciated. Thank you!

like image 827
Joe Avatar asked Mar 11 '26 22:03

Joe


1 Answers

One way that you can do this is to use par to increase the margin at the top and also to enable writing outside the plot region. Then you can use legend with a negative inset.

## Your graph
par(mar=c(5.1,4.1,6,2.1), xpd=TRUE)
plot(perf, col="red")
plot(perf2, add = TRUE, col="blue")

## Add Legend
legend("topright", c("Pred1", "Pred2"), lty=1, 
    col = c("red", "blue"), bty="n", inset=c(0,-0.15))

Legend in margin

like image 154
G5W Avatar answered Mar 13 '26 12:03

G5W



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!