mikeblazanin / gcplyr

gcplyr is an R package that facilitates wrangling and analysis of microbial growth curve data
https://mikeblazanin.github.io/gcplyr/
Other
30 stars 2 forks source link

gam basis error when passed in smooth_data #83

Closed mikeblazanin closed 1 year ago

mikeblazanin commented 1 year ago

basically it's caused by coercing all the ... args into characters to paste together to parse with as.formula.

Is there a way to make the formula directly? So that we don't have to deal with character pasting & parsing via as.formua?

mikeblazanin commented 1 year ago

A formula appears to be a structured list. Is it possible I could just build the list myself and get it into the formula class. That way I could pass the arguments passed via ... directly without coercing them into a character

mikeblazanin commented 1 year ago

fixed in v0.11