---
title: "getPercentSubjectLabeled"
canonical: "https://help.vicon.com/space/ShogunPost116/341118521/getPercentSubjectLabeled"
format: markdown
---
# Description

Gets the percentage of the subject's markers that are labeled.

The Issues map displays the percentage of markers that are labeled as a percentage of the total number of markers in the subject's labeling skeleton (see [Get an overview with the time bar Issues map](https://vicon-help.atlassian.net/wiki/spaces/ShogunPost116/pages/341115451)

> Macro (scroll-only-inline)



). This command enables access to this information.


## Functional area

Data Retrieval

# Command syntax

## Syntax

|  |
| --- |
| `getPercentSubjectLabeled 'subjectName or all'` |

### Arguments

| **Name** | **Type** | **Required** | **Comments** |
| --- | --- | --- | --- |
| `subjectName` | string | yes | The name of the subject or all. |

### Flags

None

> Macro (scroll-pagebreak)

## Return value


float, with range 0.0 to 100.0

## Examples

```plaintext
// Get percent labeled of current subject at current frame
string $cs = `getCurrentSubject`;
float $pl = `getPercentSubjectLabeled $cs`;
print $pl;

// Get percent labeled of all subjects at current frame
float $pl = `getPercentSubjectLabeled "all"`;
print $pl;

// Get percent labeled of paul at current frame
float $pl = `getPercentSubjectLabeled "paul"`;
print $pl;
```