How do I find the list of values for an EntityProperty qualifier?
up vote
7
down vote
favorite
Cross-Post on Wolfram Community
I have an EntityProperty
and I know how to get its list of qualifiers. Now how do I figure out the possible values these can take programmatically? Here's an example to get us started:
EntityValue[
EntityProperty["Country", "ExternalBalance"],
"Qualifiers"
]
{"CurrencyUnit", "Date", "PercentOfGDP", "TradeSection"
Now, say, how do I programmatically determine what "CurrencyUnit"
, "TradeSection"
, and "PercentOfGDP"
can be?
entity
add a comment |
up vote
7
down vote
favorite
Cross-Post on Wolfram Community
I have an EntityProperty
and I know how to get its list of qualifiers. Now how do I figure out the possible values these can take programmatically? Here's an example to get us started:
EntityValue[
EntityProperty["Country", "ExternalBalance"],
"Qualifiers"
]
{"CurrencyUnit", "Date", "PercentOfGDP", "TradeSection"
Now, say, how do I programmatically determine what "CurrencyUnit"
, "TradeSection"
, and "PercentOfGDP"
can be?
entity
Is that justEntityValue[ EntityProperty["Country", "ExternalBalance"], "QualifierValues"]
?
– M.R.
Nov 18 at 22:21
That it is. I didn't know that was a possible query. Where's that documented? (is it?)
– b3m2a1
Nov 18 at 22:21
Haha, I'm not sure it is.
– M.R.
Nov 18 at 22:23
Figures. Want to toss that in as the answer?
– b3m2a1
Nov 18 at 22:23
@M.R. It is documented in the Details section of theEntityValue
documentation.
– Edmund
Nov 18 at 23:55
add a comment |
up vote
7
down vote
favorite
up vote
7
down vote
favorite
Cross-Post on Wolfram Community
I have an EntityProperty
and I know how to get its list of qualifiers. Now how do I figure out the possible values these can take programmatically? Here's an example to get us started:
EntityValue[
EntityProperty["Country", "ExternalBalance"],
"Qualifiers"
]
{"CurrencyUnit", "Date", "PercentOfGDP", "TradeSection"
Now, say, how do I programmatically determine what "CurrencyUnit"
, "TradeSection"
, and "PercentOfGDP"
can be?
entity
Cross-Post on Wolfram Community
I have an EntityProperty
and I know how to get its list of qualifiers. Now how do I figure out the possible values these can take programmatically? Here's an example to get us started:
EntityValue[
EntityProperty["Country", "ExternalBalance"],
"Qualifiers"
]
{"CurrencyUnit", "Date", "PercentOfGDP", "TradeSection"
Now, say, how do I programmatically determine what "CurrencyUnit"
, "TradeSection"
, and "PercentOfGDP"
can be?
entity
entity
asked Nov 18 at 20:42
b3m2a1
25.6k254150
25.6k254150
Is that justEntityValue[ EntityProperty["Country", "ExternalBalance"], "QualifierValues"]
?
– M.R.
Nov 18 at 22:21
That it is. I didn't know that was a possible query. Where's that documented? (is it?)
– b3m2a1
Nov 18 at 22:21
Haha, I'm not sure it is.
– M.R.
Nov 18 at 22:23
Figures. Want to toss that in as the answer?
– b3m2a1
Nov 18 at 22:23
@M.R. It is documented in the Details section of theEntityValue
documentation.
– Edmund
Nov 18 at 23:55
add a comment |
Is that justEntityValue[ EntityProperty["Country", "ExternalBalance"], "QualifierValues"]
?
– M.R.
Nov 18 at 22:21
That it is. I didn't know that was a possible query. Where's that documented? (is it?)
– b3m2a1
Nov 18 at 22:21
Haha, I'm not sure it is.
– M.R.
Nov 18 at 22:23
Figures. Want to toss that in as the answer?
– b3m2a1
Nov 18 at 22:23
@M.R. It is documented in the Details section of theEntityValue
documentation.
– Edmund
Nov 18 at 23:55
Is that just
EntityValue[ EntityProperty["Country", "ExternalBalance"], "QualifierValues"]
?– M.R.
Nov 18 at 22:21
Is that just
EntityValue[ EntityProperty["Country", "ExternalBalance"], "QualifierValues"]
?– M.R.
Nov 18 at 22:21
That it is. I didn't know that was a possible query. Where's that documented? (is it?)
– b3m2a1
Nov 18 at 22:21
That it is. I didn't know that was a possible query. Where's that documented? (is it?)
– b3m2a1
Nov 18 at 22:21
Haha, I'm not sure it is.
– M.R.
Nov 18 at 22:23
Haha, I'm not sure it is.
– M.R.
Nov 18 at 22:23
Figures. Want to toss that in as the answer?
– b3m2a1
Nov 18 at 22:23
Figures. Want to toss that in as the answer?
– b3m2a1
Nov 18 at 22:23
@M.R. It is documented in the Details section of the
EntityValue
documentation.– Edmund
Nov 18 at 23:55
@M.R. It is documented in the Details section of the
EntityValue
documentation.– Edmund
Nov 18 at 23:55
add a comment |
1 Answer
1
active
oldest
votes
up vote
8
down vote
accepted
You can discover available qualifiers and values for a property like this:
EntityValue[ EntityProperty["Country", "ExternalBalance"], "QualifierValues"]
I did find one example of this usage - in the Scope section of EntityValue
ref page:
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
8
down vote
accepted
You can discover available qualifiers and values for a property like this:
EntityValue[ EntityProperty["Country", "ExternalBalance"], "QualifierValues"]
I did find one example of this usage - in the Scope section of EntityValue
ref page:
add a comment |
up vote
8
down vote
accepted
You can discover available qualifiers and values for a property like this:
EntityValue[ EntityProperty["Country", "ExternalBalance"], "QualifierValues"]
I did find one example of this usage - in the Scope section of EntityValue
ref page:
add a comment |
up vote
8
down vote
accepted
up vote
8
down vote
accepted
You can discover available qualifiers and values for a property like this:
EntityValue[ EntityProperty["Country", "ExternalBalance"], "QualifierValues"]
I did find one example of this usage - in the Scope section of EntityValue
ref page:
You can discover available qualifiers and values for a property like this:
EntityValue[ EntityProperty["Country", "ExternalBalance"], "QualifierValues"]
I did find one example of this usage - in the Scope section of EntityValue
ref page:
answered Nov 18 at 22:26
M.R.
15.5k555180
15.5k555180
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f186264%2fhow-do-i-find-the-list-of-values-for-an-entityproperty-qualifier%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Is that just
EntityValue[ EntityProperty["Country", "ExternalBalance"], "QualifierValues"]
?– M.R.
Nov 18 at 22:21
That it is. I didn't know that was a possible query. Where's that documented? (is it?)
– b3m2a1
Nov 18 at 22:21
Haha, I'm not sure it is.
– M.R.
Nov 18 at 22:23
Figures. Want to toss that in as the answer?
– b3m2a1
Nov 18 at 22:23
@M.R. It is documented in the Details section of the
EntityValue
documentation.– Edmund
Nov 18 at 23:55