CRAN Package Check Results for Package fuzzyjoin

Last updated on 2024-11-12 01:48:31 CET.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 0.1.6 4.86 110.27 115.13 NOTE
r-devel-linux-x86_64-debian-gcc 0.1.6 2.98 72.58 75.56 ERROR
r-devel-linux-x86_64-fedora-clang 0.1.6 195.18 NOTE
r-devel-linux-x86_64-fedora-gcc 0.1.6 198.54 NOTE
r-devel-windows-x86_64 0.1.6 6.00 116.00 122.00 NOTE
r-patched-linux-x86_64 0.1.6 9.01 104.98 113.99 NOTE
r-release-linux-x86_64 0.1.6 4.41 105.47 109.88 NOTE
r-release-macos-arm64 0.1.6 62.00 NOTE
r-release-macos-x86_64 0.1.6 95.00 NOTE
r-release-windows-x86_64 0.1.6 6.00 112.00 118.00 NOTE
r-oldrel-macos-arm64 0.1.6 67.00 OK
r-oldrel-macos-x86_64 0.1.6 96.00 OK
r-oldrel-windows-x86_64 0.1.6 7.00 138.00 145.00 OK

Additional issues

noSuggests

Check Details

Version: 0.1.6
Check: Rd files
Result: NOTE checkRd: (-1) misspellings.Rd:18: Lost braces 18 | This is a code{tbl_df} mapping misspellings of their words, compiled by | ^ Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-x86_64, r-patched-linux-x86_64, r-release-linux-x86_64, r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64

Version: 0.1.6
Check: Rd cross-references
Result: NOTE Found the following Rd file(s) with Rd \link{} targets missing package anchors: regex_join.Rd: str_detect stringdist_join.Rd: stringdist Please provide package anchors for all Rd \link{} targets not in the package itself and the base packages. Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-windows-x86_64

Version: 0.1.6
Check: examples
Result: ERROR Running examples in ‘fuzzyjoin-Ex.R’ failed The error most likely occurred in: > base::assign(".ptime", proc.time(), pos = "CheckExEnv") > ### Name: geo_join > ### Title: Join two tables based on a geo distance of longitudes and > ### latitudes > ### Aliases: geo_join geo_inner_join geo_left_join geo_right_join > ### geo_full_join geo_semi_join geo_anti_join > > ### ** Examples > > > library(dplyr) Attaching package: ‘dplyr’ The following objects are masked from ‘package:stats’: filter, lag The following objects are masked from ‘package:base’: intersect, setdiff, setequal, union > data("state") > > # find pairs of US states whose centers are within > # 200 miles of each other > states <- data_frame(state = state.name, + longitude = state.center$x, + latitude = state.center$y) > > s1 <- rename(states, state1 = state) > s2 <- rename(states, state2 = state) > > pairs <- s1 %>% + geo_inner_join(s2, max_dist = 200) %>% + filter(state1 != state2) Joining by: c("longitude", "latitude") > > pairs # A tibble: 74 × 6 state1 longitude.x latitude.x state2 longitude.y latitude.y <chr> <dbl> <dbl> <chr> <dbl> <dbl> 1 Alabama -86.8 32.6 Georgia -83.4 32.3 2 Alabama -86.8 32.6 Mississippi -89.8 32.7 3 Connecticut -72.4 41.6 Massachusetts -71.6 42.4 4 Connecticut -72.4 41.6 New Hampshire -71.4 43.4 5 Connecticut -72.4 41.6 New Jersey -74.2 40.0 6 Connecticut -72.4 41.6 New York -75.1 43.1 7 Connecticut -72.4 41.6 Rhode Island -71.1 41.6 8 Connecticut -72.4 41.6 Vermont -72.5 44.3 9 Delaware -75.0 38.7 Maryland -76.6 39.3 10 Delaware -75.0 38.7 New Jersey -74.2 40.0 # ℹ 64 more rows > > # plot them > library(ggplot2) > ggplot(pairs, aes(x = longitude.x, y = latitude.x, + xend = longitude.y, yend = latitude.y)) + + geom_segment(color = "red") + + borders("state") + + theme_void() Error in map_data(database, regions, xlim = xlim, ylim = ylim) : The package "maps" is required for `map_data()`. Calls: borders -> map_data -> check_installed Execution halted Flavor: r-devel-linux-x86_64-debian-gcc