Last updated on 2025-12-28 09:50:38 CET.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 1.1.0 | 25.78 | 58.18 | 83.96 | NOTE | |
| r-devel-linux-x86_64-debian-gcc | 1.1.0 | 13.61 | 41.10 | 54.71 | NOTE | |
| r-devel-linux-x86_64-fedora-clang | 1.1.0 | 47.00 | 92.12 | 139.12 | NOTE | |
| r-devel-linux-x86_64-fedora-gcc | 1.1.0 | 38.00 | 115.02 | 153.02 | NOTE | |
| r-devel-windows-x86_64 | 1.1.0 | 26.00 | 84.00 | 110.00 | ERROR | |
| r-patched-linux-x86_64 | 1.1.0 | 18.73 | 52.38 | 71.11 | NOTE | |
| r-release-linux-x86_64 | 1.1.0 | 21.03 | 53.64 | 74.67 | NOTE | |
| r-release-macos-arm64 | 1.1.0 | NOTE | ||||
| r-release-macos-x86_64 | 1.1.0 | 16.00 | 61.00 | 77.00 | NOTE | |
| r-release-windows-x86_64 | 1.1.0 | 27.00 | 86.00 | 113.00 | NOTE | |
| r-oldrel-macos-arm64 | 1.1.0 | NOTE | ||||
| r-oldrel-macos-x86_64 | 1.1.0 | 19.00 | 42.00 | 61.00 | NOTE | |
| r-oldrel-windows-x86_64 | 1.1.0 | 32.00 | 107.00 | 139.00 | NOTE |
Version: 1.1.0
Check: Rd files
Result: NOTE
checkRd: (-1) plot_lines.Rd:66: Lost braces
66 | moderator. By default it is equal to \8code{c(19, 17, 15, 8, 5, 4, 3, 1)}.}
| ^
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, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64
Version: 1.1.0
Check: examples
Result: ERROR
Running examples in 'fplot-Ex.R' failed
The error most likely occurred in:
> ### Name: plot_distr
> ### Title: Plot distributions, possibly conditional
> ### Aliases: plot_distr
>
> ### ** Examples
>
>
> # Data on publications from U.S. institutions
> data(us_pub_econ)
>
> # 0) Let's set a dictionary for a better display of variables
> setFplot_dict(c(institution = "U.S. Institution", jnl_top_25p = "Top 25% Pub.",
+ jnl_top_5p = "Top 5% Pub.", Frequency = "Publications"))
>
> # 1) Let's plot the distribution of publications by institutions:
> plot_distr(~institution, us_pub_econ)
>
> # When there is only the variable, you can use a vector instead:
> plot_distr(us_pub_econ$institution)
>
> # 2) Now the production of institution weighted by journal quality
> plot_distr(jnl_top_5p ~ institution, us_pub_econ)
>
> # You can plot several variables:
> plot_distr(1 + jnl_top_25p + jnl_top_5p ~ institution, us_pub_econ)
>
> # 3) Let's plot the journal distribution for the top 3 institutions
>
> # We can get the data from the previous graph
> graph_data = plot_distr(jnl_top_5p ~ institution, us_pub_econ, plot = FALSE)
> # And then select the top universities
> top3_instit = graph_data$x[1:3]
> top5_instit = graph_data$x[1:5] # we'll use it later
>
> # Now the distribution of journals
> plot_distr(~ journal | institution, us_pub_econ[institution %in% top3_instit])
> # Alternatively, you can use the argument mod.select:
> plot_distr(~ journal | institution, us_pub_econ, mod.select = top3_instit)
>
> # 3') Same graph as before with "other" column, 5 institutions
> plot_distr(~ journal | institution, us_pub_econ,
+ mod.select = top5_instit, other = TRUE)
>
> #
> # Example with continuous data
> #
>
> # regular histogram
> plot_distr(iris$Sepal.Length)
>
> # now splitting by species:
> plot_distr(~ Sepal.Length | Species, iris)
>
> # idem but the three distr. are separated:
> plot_distr(~ Sepal.Length | Species, iris, mod.method = "split")
>
> # Now the three are stacked
> plot_distr(~ Sepal.Length | Species, iris, mod.method = "stack")
Error in `[.data.table`(new_coords, , `:=`(ytop_new, cumsum(ytop)), by = x_nb) :
attempt access index 7/7 in VECTOR_ELT
Calls: plot_distr -> [ -> [.data.table
Execution halted
Flavor: r-devel-windows-x86_64
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.