Skip to content

Commit

Permalink
md version
Browse files Browse the repository at this point in the history
  • Loading branch information
Robinlovelace committed Jul 1, 2024
1 parent 395bcdf commit a16454d
Show file tree
Hide file tree
Showing 5 changed files with 855 additions and 22 deletions.
3 changes: 2 additions & 1 deletion R/opsnap.R
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ select_columns = function(d) {

filter_offence_nas = function(d) {
d |>
dplyr::filter(!offence == "N/A") |>
# Filter out "n/a" values (case insensitive):
dplyr::filter(!grepl("n/a", offence, ignore.case = TRUE)) |>
dplyr::filter(!is.na(offence))
}

Expand Down
2 changes: 1 addition & 1 deletion README.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Install the package from GitHub:
```{r}
#| eval: false
remotes::install_github("ITSLeeds/opsnap", force = TRUE, dependencies = TRUE)
```
```

```{r}
#| include: false
Expand Down
Binary file modified man/figures/README-fig-time-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit a16454d

Please sign in to comment.