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
Example here: http://www.chemspider.com/Chemical-Structure.391783.html Water Solubility at 25 deg C (mg/L): 1.369e+004 is read as 1.369.
Water Solubility at 25 deg C (mg/L): 1.369e+004
The text was updated successfully, but these errors were encountered:
Maybe you have to be explicit and do something like
grep('Water Solubility at 25 deg C', ll, value = TRUE) %>% sub('Water Solubility at 25 deg C (mg/L):',"", ., fixed=TRUE) %>% as.numeric
Sorry, something went wrong.
fix issue #143
afaf416
Thanks @stanstrup for reporting. I added some regex to capture scientific notation in EPI-Suite output (very messy stuff...)
m4 <- cs_prop(391783) r <- m4$`391783`$epi r$value_pred[r$prop == 'Water Solubility from KOW'] # [1] 13690
Thanks!
No branches or pull requests
Example here: http://www.chemspider.com/Chemical-Structure.391783.html
Water Solubility at 25 deg C (mg/L): 1.369e+004
is read as 1.369.
The text was updated successfully, but these errors were encountered: