* using log directory 'd:/RCompile/CRANincoming/R-devel/tatooheene.Rcheck' * using R Under development (unstable) (2024-12-12 r87438 ucrt) * using platform: x86_64-w64-mingw32 * R was compiled by gcc.exe (GCC) 13.3.0 GNU Fortran (GCC) 13.3.0 * running under: Windows Server 2022 x64 (build 20348) * using session charset: UTF-8 * checking for file 'tatooheene/DESCRIPTION' ... OK * this is package 'tatooheene' version '0.4.0' * package encoding: UTF-8 * checking CRAN incoming feasibility ... NOTE Maintainer: 'Stijn Peeters ' New submission Authors@R field should be a call to person(), or combine such calls. The Description field should not start with the package name, 'This package' or similar. Found the following \keyword or \concept entries which likely give several index terms: File 'depreciation_interest.Rd': \keyword{Generic,} File 'discount_value.Rd': \keyword{Costs,} \keyword{Discounting,} File 'discount_vector.Rd': \keyword{Costs,} \keyword{Discounting,} File 'friction_period.Rd': \keyword{Generic,} File 'nl_med_prices.Rd': \keyword{Generic,} \keyword{Manual,} \keyword{Prices,} File 'nl_pat_fam_prices.Rd': \keyword{Generic,} \keyword{Manual,} \keyword{Prices,} File 'nl_ppp.Rd': \keyword{Generic,} \keyword{Manual,} File 'nl_price_index.Rd': \keyword{CBS,} \keyword{CPI,} \keyword{Index,} File 'nl_prod_oth_prices.Rd': \keyword{Generic,} \keyword{Manual,} \keyword{Prices,} * checking package namespace information ... OK * checking package dependencies ... OK * checking if this is a source package ... OK * checking if there is a namespace ... OK * checking for hidden files and directories ... OK * checking for portable file names ... OK * checking whether package 'tatooheene' can be installed ... OK * checking installed package size ... OK * checking package directory ... OK * checking for future file timestamps ... OK * checking DESCRIPTION meta-information ... OK * checking top-level files ... NOTE Non-standard file/directory found at top level: 'README.Rmd' * checking for left-over files ... OK * checking index information ... OK * checking package subdirectories ... OK * checking code files for non-ASCII characters ... OK * checking R files for syntax errors ... OK * checking whether the package can be loaded ... OK * checking whether the package can be loaded with stated dependencies ... OK * checking whether the package can be unloaded cleanly ... OK * checking whether the namespace can be loaded with stated dependencies ... OK * checking whether the namespace can be unloaded cleanly ... OK * checking loading without being on the library search path ... OK * checking use of S3 registration ... OK * checking dependencies in R code ... OK * checking S3 generic/method consistency ... OK * checking replacement functions ... OK * checking foreign function calls ... OK * checking R code for possible problems ... NOTE friction_period: no visible binding for global variable 'Year' friction_period: no visible binding for global variable 'Friction period weeks average over 5 years' friction_period: no visible binding for global variable 'Friction period in weeks' friction_period: no visible binding for global variable 'Friction period days average over 5 years' friction_period: no visible binding for global variable 'Friction period in days' nl_med_prices: no visible global function definition for 'na.omit' nl_med_prices: no visible binding for global variable 'Year' nl_med_prices: no visible binding for global variable 'Category' nl_med_prices: no visible binding for global variable 'Unit' nl_pat_fam_prices: no visible global function definition for 'na.omit' nl_pat_fam_prices: no visible binding for global variable 'Year' nl_pat_fam_prices: no visible binding for global variable 'Category' nl_pat_fam_prices: no visible binding for global variable 'Unit' nl_ppp: no visible binding for global variable 'Year' nl_ppp: no visible binding for global variable 'PPP' nl_price_index: no visible binding for global variable 'df_cpi_combined' nl_price_index: no visible binding for global variable 'Year to' nl_price_index: no visible binding for global variable 'Percentage' nl_price_index: no visible binding for global variable 'cumulative' nl_prod_oth_prices: no visible global function definition for 'na.omit' nl_prod_oth_prices: no visible binding for global variable 'Year' nl_prod_oth_prices: no visible binding for global variable 'Category' nl_prod_oth_prices: no visible binding for global variable 'Unit' Undefined global functions or variables: Category Friction period days average over 5 years Friction period in days Friction period in weeks Friction period weeks average over 5 years PPP Percentage Unit Year Year to cumulative df_cpi_combined na.omit Consider adding importFrom("stats", "na.omit") to your NAMESPACE file. * checking Rd files ... OK * checking Rd metadata ... OK * checking Rd line widths ... NOTE Rd file 'depreciation_interest.Rd': \examples lines wider than 100 characters: depreciation_interest(v_replace_val = 50000, r_salvage_val = 5000, n_amortisation_period = 10, i_interest_rt = 0.03, output = "data fra ... [TRUNCATED] depreciation_interest(v_replace_val = 50000, r_salvage_val = 5000, n_amortisation_period = 10, i_interest_rt = 0.03, output = "annuity ... [TRUNCATED] depreciation_interest(v_replace_val = 50000, r_salvage_val = 5000, n_amortisation_period = 10, i_interest_rt = 0.03, output = "annual c ... [TRUNCATED] Rd file 'discount_value.Rd': \examples lines wider than 100 characters: # Calculate the discounted value of 100 after 5 years with a discount rate of 0.03 in which the first year is not discounted discount_value(current_value = 100, discount_rate = 0.03, time = 5, time_unit = "years", discount_year_one = FALSE) # Calculate the discounted value of 100 after 60 months with a discount rate of 0.03 in which the first year is not discounted discount_value(current_value = 100, discount_rate = 0.03, time = 60, time_unit = "months", discount_year_one = FALSE) # Calculate the discounted value of 100 after 365 days with a discount rate of 0.06 in which the first year is discounted discount_value(current_value = 100, discount_rate = 0.06, time = 365, time_unit = "days", discount_year_one = TRUE) Rd file 'discount_vector.Rd': \examples lines wider than 100 characters: # Calculate the discount vector for 5 years with a discount rate of 0.015, and a start time of 0 in which the first year is not discoun ... [TRUNCATED] discount_vector(discount_rate = 0.015, start_time = 0, end_time = 5, time_unit = "years", discount_year_one = FALSE) # Calculate the discount vector for 60 months with a discount rate of 0.03, and a start time of 2 in which the first year is not discou ... [TRUNCATED] discount_vector(discount_rate = 0.03, start_time = 2, end_time = 60, time_unit = "months", discount_year_one = FALSE) # Calculate the discount vector for 365 days with a discount rate of 0.06, and a start time of 0 in which the first year is discounted discount_vector(discount_rate = 0.06, start_time = 0, end_time = 365, time_unit = "days", discount_year_one = TRUE) Rd file 'nl_med_prices.Rd': \examples lines wider than 100 characters: # Calculate the Medical Reference prices of the Dutch Costing Manual for the year 2023 with the category Nursing and the unit Nursing d ... [TRUNCATED] nl_med_prices(year = "2023", category = "Nursing", unit = "Nursing day excluding personnel costs, hospital") # Calculate the Medical Reference prices of the Dutch Costing Manual for the year 2022 and 2023 with the category Nursing and the unit ... [TRUNCATED] nl_med_prices(year = "all", category = "Nursing", unit = "Nursing day excluding personnel costs, hospital") # Calculate the Medical Reference prices of the Dutch Costing Manual for the year 2022 with the category Nursing and the unit Nursing d ... [TRUNCATED] nl_med_prices(year = "2022", category = "Nursing", unit = "Nursing day excluding personnel costs, hospital", currency = "INT$") Rd file 'nl_pat_fam_prices.Rd': \examples lines wider than 100 characters: # Calculate the Patient & Family Reference prices of the Dutch Costing Manual for the year 2023 with the category Transportation and th ... [TRUNCATED] nl_pat_fam_prices(year = "2022", category = "Transportation", currency = "INT$", unit = "Car, cost per kilometer") # Calculate the Patient & Family Reference prices of the Dutch Costing Manual for the year 2022 and 2023 with the category Transportati ... [TRUNCATED] # Calculate the Patient & Family Reference prices of the Dutch Costing Manual for the year 2022 with the category Transportation and th ... [TRUNCATED] nl_pat_fam_prices(year = "2022", category = "Transportation", unit = "Car, cost per kilometer", currency = "INT$") Rd file 'nl_prod_oth_prices.Rd': \examples lines wider than 100 characters: # Calculate the Productivity and other societal Reference prices of the Dutch Costing Manual for the year 2023 with the category Produc ... [TRUNCATED] # Calculate the Productivity and other societal Reference prices of the Dutch Costing Manual for the year 2022 and 2023 with the catego ... [TRUNCATED] # Calculate the Productivity and other societal Reference prices of the Dutch Costing Manual for the year 2022 with the category Produc ... [TRUNCATED] These lines will be truncated in the PDF manual. * checking Rd cross-references ... OK * checking for missing documentation entries ... OK * checking for code/documentation mismatches ... OK * checking Rd \usage sections ... OK * checking Rd contents ... OK * checking for unstated dependencies in examples ... OK * checking contents of 'data' directory ... OK * checking data for non-ASCII characters ... OK * checking LazyData ... OK * checking data for ASCII and uncompressed saves ... OK * checking examples ... OK * checking PDF version of manual ... [13s] OK * checking HTML version of manual ... OK * DONE Status: 4 NOTEs