We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Based on https://github.com/USEPA/ToxCast-Internal/issues/127 issue brought by @Kelly-Carstens-EPA
Replace https://github.com/USEPA/CompTox-ToxCast-tcpl/blob/dev/R/tcplFit2.R#L32 nmed_gtbl_neg = sum(med_rmds_neg) / first(nconcs) with something like nmed_gtbl_neg = sum(med_rmds_neg) / mean(unique(nconcs[res$med_rmds_neg]))
nmed_gtbl_neg = sum(med_rmds_neg) / first(nconcs)
nmed_gtbl_neg = sum(med_rmds_neg) / mean(unique(nconcs[res$med_rmds_neg]))
The text was updated successfully, but these errors were encountered:
cthunes
Successfully merging a pull request may close this issue.
Based on https://github.com/USEPA/ToxCast-Internal/issues/127 issue brought by @Kelly-Carstens-EPA
Replace https://github.com/USEPA/CompTox-ToxCast-tcpl/blob/dev/R/tcplFit2.R#L32
nmed_gtbl_neg = sum(med_rmds_neg) / first(nconcs)
with something like
nmed_gtbl_neg = sum(med_rmds_neg) / mean(unique(nconcs[res$med_rmds_neg]))
The text was updated successfully, but these errors were encountered: