View source: R/get_calculatedmetrics.R
aw_get_calculatedmetrics | R Documentation |
Retrieve a list of available calculated metrics. The results will always include these default items:
id
, name
, description
, rsid
, owner
, polarity
, precision
, type
. Other attributes can
be optionally requested through the expansion
field.
aw_get_calculatedmetrics(
company_id = Sys.getenv("AW_COMPANY_ID"),
rsids = NULL,
ownerId = NULL,
filterByIds = NULL,
toBeUsedInRsid = NULL,
locale = "en_US",
name = NULL,
tagNames = NULL,
favorite = NULL,
approved = NULL,
limit = 1000,
page = 0,
sortDirection = "DESC",
sortProperty = NULL,
expansion = NULL,
includeType = "all",
debug = FALSE
)
company_id |
Company ID. If an environment variable called |
rsids |
Filter the list to only include calculated metrics tied to a specified RSID or
list of RSIDs. Specify multiple RSIDs as a vector (i.e., " |
ownerId |
Filter the list to only include calculated metrics owned by the specified loginId. |
filterByIds |
Filter the list to only include calculated metrics in the specified list as specified by a single string or as a vector of strings. |
toBeUsedInRsid |
The report suite where the calculated metric is intended to be used. This
report suite is used to determine things like compatibility and permissions. If it is not specified,
then the permissions will be calculated based on the union of all metrics authorized in all groups
the user belongs to. If compatibility is specified for |
locale |
The locale that system-named metrics should be returned in. Non-localized values will be returned for title, name, description, etc. if a localized value is not available. |
name |
Filter the list to only include calculated metrics that contain the specified name. This is case-insensitive and is a simple, single string match. |
tagNames |
Filter the list to only include calculated metrics that contain one of the tags as specified by a single string or vector of strings. |
favorite |
Set to |
approved |
Set to |
limit |
The number of results to return per page. The default is 1,000. |
page |
The "page" of results to display. This works in conjunction with the |
sortDirection |
The sort direction for the results: |
sortProperty |
The property to sort the results by. Currently available values are |
expansion |
Additional calculated metric metadata fields to include in the results:
|
includeType |
Include additional calculated metrics not owned by user. Available values are |
debug |
Include the output and input of the api call in the console for debugging. Default is FALSE |
This function is useful/needed to identify the specific ID of a calculated metric for use in other
functions like aw_freeform_report
.
The expansion
argument accepts the following values, which will then include additional columns
in the results:
ownerFullName: adds owner.name
and owner.login
columns to the results (owner.id
is
already included by default).
modified: adds a modified
column to the output with the date (ISO 8601 format) each
calculated metric was last modified.
definition: adds multiple columns (the number will vary based on the number and complexity of calculated metrics returns) that provide the actual formula for each of the calculated metrics. This is returned from the API as a JSON object and converted into columns by the function, which means it is pretty messy, so, really, it's not recommended that you use this value.
compatability: should add a column with the products that the metric is compatible with, but this behavior has not actually been shown to be true, so this may actually do nothing if included.
reportSuiteName: adds a reportSuiteName
and a siteTitle
column with the friendly report
suite name for the RSID.
tags: adds a column with an embedded data frame with all of the existing tags that are associated with the calculated metric. This can be a bit messy to work with, but the information is, at least, there.
Multiple values for expansion
can be included in the argument as a vector. For instance,
expansion = c("tags", "modified")
will add both a tags
column and a modified
column to the output.
A data frame of calculated metrics and their metadata.
aw_get_metrics
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.