-
Notifications
You must be signed in to change notification settings - Fork 1
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
Folder starting with a number breaks functionality #3
Comments
It's a standard R list's behavior, when you try to access a list element using '$' and its name starts with a number. l <- list(`1a`="abc")
print(l$1a) # This one is not going to work
print(l$`1a`) |
Ah, I see. Thanks for the explanation. |
@krzjoa sorry for pinging you - don't know if you get notified when an issue is re-opened. Writing this in console
gives
That's alright. But writing this in console
gives
Is this again something I did wrong? |
@WurmPeter |
You mean why
doesn't give the right result? No clue... |
I have created an object via path.chain::path_chain() that doesn't work if folder starts with a number.
AAAA$BBBB$CCCC$... works, but when one folder starts with a number, it stops:
AAAA$1BBB$ (nothing more is shown).
Calling AAAA$1BBB in console causes
Error: unexpected numeric constant
The text was updated successfully, but these errors were encountered: