-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
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
Rename ^
to syms
#125
Comments
Doesn't JuliaDBMeta use |
a = :SepalLength
@with iris cols(a) Whereas I'm not sure I agree with the proposed renaming. |
Got it. Yes, (I still kind of wish we treated all names as columns by default, so that we wouldn't need to escape symbols...) |
This is okay, but
which is the same as
Basically we have two divergent ways to escape the variable
Don't we do this already? Or do you mean full tidy evaluation? |
So what's the conclusion here? |
It's weird that we have |
Closing this, |
^()
is currently used to refer to a symbol on its own. for example,df @> transform(x = :b)
will make a new column:x
which looks like the column:b
, whiledf @> transform(x = ^(:b))
makes a new column:x
and fills it with the symbol:b
. There is nothing about^()
that indicates this behavior. I propose renaming it tosyms
, because it escapesSymbol
s and has the same number of letters ascols
.The text was updated successfully, but these errors were encountered: