-
Notifications
You must be signed in to change notification settings - Fork 48
Open
Description
everything goes well with simple column names like "Name", "Full_Name", "Age", but i cant get it done when i have field names with spaces like "Full Name", "ID Number".
This works,
df = x |>
@filter(_.Age > 2) |>
@map({_.Name}) |>
DataFrame
this does not work:
df = x |>
@filter(_.Age> 2) |>
@map({_."Full Name"}) |>
DataFrame
What i am doing wrong?
Metadata
Metadata
Assignees
Labels
No labels