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
For multiple casrn, extr_iris, extracts all the casrn info multiple times (x number of casrn). It is looping twice...
extr_iris
dat <- extractox::extr_iris(c("50-00-0", "100-99-0")) #> ℹ Checking Internet Connection... #> ℹ Internet connection OK... #> Quering 50-00-0 to EPA IRIS database... #> Request succeeded with status code: 200 #> Quering 100-99-0 to EPA IRIS database... #> Request succeeded with status code: 200 dat #> # A tibble: 6 × 8 #> chemical_name casrn exposure_route assessment_type critical_effect_or_tumo…¹ #> <chr> <chr> <chr> <chr> <chr> #> 1 Formaldehyde 50-00-0 Oral Noncancer Reduced weight gain, his… #> 2 Formaldehyde 50-00-0 Inhalation Cancer Nasopharyngeal cancer, s… #> 3 Formaldehyde 50-00-0 Inhalation Noncancer Decreased pulmonary func… #> 4 Formaldehyde 50-00-0 Inhalation Cancer Nasopharyngeal cancer, s… #> 5 Formaldehyde 50-00-0 Inhalation Noncancer Decreased pulmonary func… #> 6 Formaldehyde 50-00-0 Oral Noncancer Reduced weight gain, his… #> # ℹ abbreviated name: ¹critical_effect_or_tumor_type #> # ℹ 3 more variables: woe_characterization <chr>, toxicity_value_type <chr>, #> # toxicity_value <chr>
The text was updated successfully, but these errors were encountered:
f45b180
fix #15: now extr_iris extract the correct number of chemicals with n…
9b020e5
…o repetition 🐛 [skipci]
9c50feb
…o repetition 🐛
c1au6i0
No branches or pull requests
For multiple casrn,
extr_iris
, extracts all the casrn info multiple times (x number of casrn).It is looping twice...
The text was updated successfully, but these errors were encountered: