The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
Patch fix: closing issue #26 ### Problem Description
When calling package functions using the ::
operator
(e.g., nascaR.data::get_driver_info()
) without first
loading the package via library()
, the function would fail
with the error:
Error in `selected_series_data()`:
! object 'cup_series' not found
This occurred because the lazy-loaded data objects
(cup_series
, xfinity_series
,
truck_series
) were not being loaded into the package
namespace when functions were accessed directly via ::
. The
data would only load when library(nascaR.data)
was
called.
The selected_series_data()
function in
utils.R
was directly referencing data objects without
ensuring they were loaded. When using ::
notation, R loads
the function but doesn’t trigger lazy data loading, causing the data
objects to be unavailable.
Modified the selected_series_data()
function to
explicitly load the required data objects using the data()
function:
# Ensure data is loaded even when using :: notation
data("cup_series", package = "nascaR.data", envir = environment())
data("xfinity_series", package = "nascaR.data", envir = environment())
data("truck_series", package = "nascaR.data", envir = environment())
This ensures the data is available regardless of how the function is
accessed, making the package more robust for users who prefer the
::
notation without loading the entire package
namespace.
Seg Points
has been removed. Instead, S1
& S2
variables correspond to the driver’s finishing
position during each segment.S1
& S2
documentation.dev
branch will be updated with the most recent racing
results every Monday at 10AM during the race season (February through
November).get_*_info()
functions provide summary statistics
on a by-race, season, or career format.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.