Skip to content

Commit

Permalink
Merge pull request #552 from adeschen/main
Browse files Browse the repository at this point in the history
Update createAccuracyGraph() to show y lab values
  • Loading branch information
adeschen authored Sep 5, 2024
2 parents 37db9b6 + 72f70d9 commit 1e18e87
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: r-lib/actions/setup-r@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions R/visualization.R
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ createAccuracyGraph <- function(fileRDS, title="",
scale_colour_manual(aesthetics = c("colour", "fill"),
breaks=selectD, values=selectColor) +
theme_classic() +
theme(axis.text=element_text(size=1, colour = "white"),
theme(axis.text=element_text(size=20, colour = "black"),
panel.background = element_rect(color="black"),
axis.text.x=element_text(size=30, angle=90,
axis.text.x=element_text(size=20, angle=90,
vjust = 0.5, hjust=1, colour="black"),
plot.title = element_text(size=22, face="bold",
colour="gray20", hjust=0.5),
Expand Down

0 comments on commit 1e18e87

Please sign in to comment.