Learn R Programming

impectR (version 2.5.3)

getSquadIterationScores: Return a dataframe that contains all squads scores for a given iteration ID

Description

Return a dataframe that contains all squads scores for a given iteration ID

Usage

getSquadIterationScores(iteration, token, host = "https://api.impect.com")

Value

a dataframe containing the squad scores aggregated per squad for the given iteration ID

Arguments

iteration

'IMPCET' iteration ID

token

bearer token

host

host environment

Examples

Run this code
# Toy example: this will error quickly (no API token)
try(squad_scores <- getSquadIterationScores(
  iteration = 0,
  token = "invalid"
))

# Real usage: requires valid Bearer Token from `getAccessToken()`
if (FALSE) {
squad_scores <- getSquadIterationScores(
  iteration = 1004,
  token = "yourToken"
)
}

Run the code above in your browser using DataLab