casting all columns of one type to another using selectors #10264
-
I want to cast all columns of type "Decimal" to "Float64" without having to list them all out. I tried using the of_type() selector and chaining to cast() but I get the error that of_type() doesn't have a cast() attribute. The same error is given when I tried using the numeric() selector. |
Beta Was this translation helpful? Give feedback.
Answered by
lostmygithubaccount
Oct 2, 2024
Replies: 1 comment 1 reply
-
I think you're looking for something like this with
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
jjAtNxtPt
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think you're looking for something like this with
s.across
: