ggplot(df,aes(FPR,TPR,color=GeneSet))+
geom_line(size = 2, alpha = 0.7)+
labs(title= "ROC curve", x = "False Positive Rate (1-Specificity)", y = "True Positive Rate (Sensitivity)")
이건 미처 생각하지 못한 방법...
이걸로 python 에서 얻어진 값을 활용해서 R 에서 ROC curve 를 그릴 수 있다.
'R_statistics > Rs_graphics' 카테고리의 다른 글
[R프로그래밍] ggplot2:: 여러개의 ggsurvplot 합치기 / arrange multiple ggsurvplots (0) | 2019.11.05 |
---|---|
[R프로그래밍] 데이터시각화 with ggplot2:: annotate 에서 bold 체 사용하기 (0) | 2019.10.25 |
[R프로그래밍] 데이터시각화 with ggplot2:: 그래프 예쁘게 그리기, 경계선 지우기 (0) | 2019.09.21 |
[R프로그래밍] 데이터시각화 with ggplot2:: geom_histogram, 히스토그램 in R (0) | 2019.09.17 |
[R프로그래밍] 데이터시각화 with ggplot2:: 범례 (legend) 제거하기 (remove) (0) | 2019.03.20 |