Skip to content

Commit

Permalink
Update plot_pattern.R
Browse files Browse the repository at this point in the history
Re implementing my bug fix that was in commit a985ce0 but overwritten in commit 985d336
  • Loading branch information
jwallib committed Jul 14, 2023
1 parent 85312c3 commit c5f34db
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/plot_pattern.R
Expand Up @@ -107,7 +107,8 @@ plot_pattern <-

# tidy the pattern
long <-
data.frame(.y = 1:(rws - 1), pat_clean, row.names = NULL) %>%
cbind(.y = 1:(rws - 1), pat_clean) %>%
as.data.frame(.) %>%

Check warning on line 111 in R/plot_pattern.R

View workflow job for this annotation

GitHub Actions / lint

file=R/plot_pattern.R,line=111,col=21,[object_usage_linter] no visible binding for global variable ‘.’
tidyr::pivot_longer(
cols = tidyselect::all_of(vrb),
names_to = "x",
Expand Down

0 comments on commit c5f34db

Please sign in to comment.