diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2023-07-21 08:24:12 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2023-07-21 08:32:32 +0200 |
commit | d04bac001217855b4e9a1490a35bef3325441b55 (patch) | |
tree | 26bf1a06d038c796c2dbce21e5867088c555ee06 /R/drcfit.R | |
parent | 0bc79f02e99d719be5dbb96ed1591d46c8373c9f (diff) |
Maintenance prompted by email from CRAN
- Fix an improper use of 'packageVersion'
- Update .Rbuildignore
- Fix a link in the README
- Static documentation rebuilt by pkgdown::build_site()
Diffstat (limited to 'R/drcfit.R')
-rw-r--r-- | R/drcfit.R | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -29,7 +29,7 @@ drcfit <- function(data, chooseone=TRUE, splitted <- split(data,data$substance) # The indexing of the results of the ED50 function changed with drc 3.0.1 - if (packageVersion("drc") > 3) { + if (packageVersion("drc") > "3") { ED50_row_index = "e:1:50" EDx_row_index_prefix = "e:1" } else { |