-
Hi. some thing like this:
not sure how to properly use the infer_schema in my case |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Upon further investigation - currently i see its possible by using only
while there is also a possibility of using
essentially what i want to do is possible but requires writing to a specific format and from there added functionality to auto update schemas. a bit unsatisfactory as current approach - fix schemas, convert to string representation of |
Beta Was this translation helpful? Give feedback.
Upon further investigation - currently i see its possible by using only
DataFrameSchema
from_yaml or from_json, e.g.while
DataFrameModel
can only use to_yaml, to_schema()there is also a possibility of using
from_frictionless_schema
to read third party schemas which has a schema parameter:essentially what i want to do is possible but requires writing to a specific format and from there added functionality to auto update schemas.
a bit unsatisfactory as
DataFrameModel
should also have this ability to adjust fields.current approach - fix schemas, convert to string representation of
D…