Last updated on 2025-11-15 03:50:10 CET.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 0.5.0 | 2.69 | 51.69 | 54.38 | OK | |
| r-devel-linux-x86_64-debian-gcc | 0.5.0 | 2.35 | 41.17 | 43.52 | OK | |
| r-devel-linux-x86_64-fedora-clang | 0.5.0 | 24.00 | 62.67 | 86.67 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 0.5.0 | 11.00 | 87.10 | 98.10 | ERROR | |
| r-devel-windows-x86_64 | 0.5.0 | 6.00 | 81.00 | 87.00 | OK | |
| r-patched-linux-x86_64 | 0.5.0 | 3.28 | 48.23 | 51.51 | OK | |
| r-release-linux-x86_64 | 0.5.0 | 2.95 | 47.64 | 50.59 | OK | |
| r-release-macos-arm64 | 0.5.0 | 1.00 | 53.00 | 54.00 | OK | |
| r-release-macos-x86_64 | 0.5.0 | 3.00 | 131.00 | 134.00 | OK | |
| r-release-windows-x86_64 | 0.5.0 | 4.00 | 79.00 | 83.00 | OK | |
| r-oldrel-macos-arm64 | 0.5.0 | 1.00 | 69.00 | 70.00 | OK | |
| r-oldrel-macos-x86_64 | 0.5.0 | 4.00 | 119.00 | 123.00 | OK | |
| r-oldrel-windows-x86_64 | 0.5.0 | 6.00 | 92.00 | 98.00 | OK |
Version: 0.5.0
Check: examples
Result: ERROR
Running examples in ‘filibustr-Ex.R’ failed
The error most likely occurred in:
> ### Name: read_html_table
> ### Title: Scrape an online HTML table
> ### Aliases: read_html_table
>
> ### ** Examples
>
> ## Don't show:
> if (!is.null(curl::nslookup("voteview.com", error = FALSE))) withAutoprint({ # examplesIf
+ ## End(Don't show)
+ # The table used in `get_senate_cloture_votes()`
+ # NOTE: `get_senate_cloture_votes()` performs some cleaning on this table
+ read_html_table(url = "https://www.senate.gov/legislative/cloture/clotureCounts.htm",
+ css = ".cloturecount")
+ ## Don't show:
+ }) # examplesIf
> read_html_table(url = "https://www.senate.gov/legislative/cloture/clotureCounts.htm",
+ css = ".cloturecount")
# A tibble: 56 × 5
Congress Years `Motions Filed` `Votes on Cloture` `Cloture Invoked`
<chr> <chr> <chr> <chr> <chr>
1 119 2025-2026 193 194 167
2 118 2023-2024 266 241 227
3 117 2021-2022 336 289 270
4 116 2019-2020 328 298 270
5 115 2017-2018 201 168 157
6 114 2015-2016 128 123 60
7 113 2013-2014 252 218 187
8 112 2011-2012 115 73 41
9 111 2009-2010 137 91 63
10 110 2007-2008 139 112 61
# ℹ 46 more rows
> ## End(Don't show)
> ## Don't show:
> if (!is.null(curl::nslookup("www.baseball-reference.com", error = FALSE))) withAutoprint({ # examplesIf
+ ## End(Don't show)
+ # A table from Baseball Reference
+ read_html_table(url = "https://www.baseball-reference.com/friv/rules-changes-stats.shtml",
+ css = "#time_of_game")
+ ## Don't show:
+ }) # examplesIf
> read_html_table(url = "https://www.baseball-reference.com/friv/rules-changes-stats.shtml",
+ css = "#time_of_game")
Error in open.connection(x, "rb") : cannot open the connection
Calls: withAutoprint ... <Anonymous> -> <Anonymous> -> <Anonymous> -> read_html.default
Execution halted
Flavor: r-devel-linux-x86_64-fedora-gcc