- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
cee137
Explorer
08-26-2020
10:13 AM
I'm not sure if there is an answer to this question but as of right now, I'm using fieldsummary to get a better understanding of my data and specific fields in my data. Buuut, that's about where my fieldsummary journey ends. Are there any other interesting ways you use fieldsummary?
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
to4kawa
Ultra Champion
08-26-2020
01:55 PM
index=_internal "color" earliest=-7d
| fieldsummary
| rename field as names
| search names="color"
| spath input=values {} output=args
| stats values(names) as names by args
| spath input=args
| xyseries names value count
I made this for a trial.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
to4kawa
Ultra Champion
08-26-2020
01:55 PM
index=_internal "color" earliest=-7d
| fieldsummary
| rename field as names
| search names="color"
| spath input=values {} output=args
| stats values(names) as names by args
| spath input=args
| xyseries names value count
I made this for a trial.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
cee137
Explorer
09-08-2020
08:04 AM
Thank you!
