-
Notifications
You must be signed in to change notification settings - Fork 102
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
Agegroup when arcade #25
Open
asafevenpaz
wants to merge
5
commits into
Esri:master
Choose a base branch
from
asafevenpaz:agegroup_when_Arcade
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
6d0c1d2
added "when_agegroup" arcade expression page
asafevenpaz 8118f08
Update when_agegroup.md
asafevenpaz 21baf99
Update any/when_agegroup.md
asafevenpaz fd368f7
Update any/when_agegroup.md
asafevenpaz dae3295
Update any/when_agegroup.md
asafevenpaz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# when_agegroup | ||
|
||
This expression assigns a value of a certain age group based on the value of the column "age". | ||
asafevenpaz marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
## Use cases | ||
|
||
To categorize your age data into age groups for easier analysis and visualization. | ||
|
||
## Workflow | ||
|
||
Create a new field of type "String" in your feature layer and name it "AgeGroup". In the "field calculator" create the following Arcade expression: | ||
|
||
when($feature["applicant_age"]<15,'Under 15',$feature["applicant_age"]>=15 && $feature["applicant_age"]<25,'16-25','NA') | ||
asafevenpaz marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
In the above expression we only had two categories ('Under 15' and '16-25') but you can add as many categories as needed. | ||
|
||
You need to always have a default value at the end of eexpression (in our example - 'NA') or you will recieve an error. | ||
asafevenpaz marked this conversation as resolved.
Show resolved
Hide resolved
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using this text for the link is fine, but can you format this so it's more readable? Maybe something like "Date to age group" or something that describes the function to be used.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just realized this doesn't deal with Date fields. It's still numbers...so it could be even more generic, like "Number to category"