Skip to content

Commit

Permalink
[no-deploy] Correction for graphs
Browse files Browse the repository at this point in the history
	apparently the value names are breaking the graph, which wasn't happening previously
  • Loading branch information
GuestJim committed Jun 8, 2024
1 parent e4b94e1 commit e25841a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TBOG - Pulse - Search.r
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ for (IND in CSVnames) {
limits = c(PULSElow - 1, PULSEupp + 1), expand = c(0, 0),
sec.axis = dup_axis(
name = NULL,
breaks = PARTsumm[, c("Lower", "Median", "Upper")],
breaks = PARTsumm[, c("Lower", "Median", "Upper")] |> as.numeric(),
labels = LABform)
)
customSave(name = paste0(IND, " - Hist"), plot = graphHIST, fold = IND)
Expand Down

0 comments on commit e25841a

Please sign in to comment.