Class: FacetedCount

Counts broken down by a facet

URI: summary_statistics:FacetedCount

classDiagram class FacetedCount FacetedCount : facet FacetedCount : filtered_count

Slots

Name

Cardinality and Range

Description

Inheritance

facet

0..1
String

the facet used to group the counts

direct

filtered_count

1..1
Integer

the number of items in the facet

direct

Usages

used by

used in

type

used

UngroupedStatistics

edge_count_by_predicate

range

FacetedCount

UngroupedStatistics

entailed_edge_count_by_predicate

range

FacetedCount

UngroupedStatistics

synonym_statement_count_by_predicate

range

FacetedCount

UngroupedStatistics

class_count_by_subset

range

FacetedCount

UngroupedStatistics

class_count_by_category

range

FacetedCount

UngroupedStatistics

mapping_statement_count_by_predicate

range

FacetedCount

UngroupedStatistics

mapping_statement_count_by_object_source

range

FacetedCount

UngroupedStatistics

mapping_statement_count_subject_by_object_source

range

FacetedCount

ContributorStatistics

role_counts

range

FacetedCount

Comments

  • For example, edge counts may be grouped by predicate (relationship type)

Identifier and Mapping Information

Schema Source

  • from schema: https://w3id.org/oak/summary_statistics

Mappings

Mapping Type

Mapped Value

self

summary_statistics:FacetedCount

native

summary_statistics:FacetedCount

LinkML Source

Direct

```yaml name: FacetedCount description: Counts broken down by a facet comments: - For example, edge counts may be grouped by predicate (relationship type) from_schema: https://w3id.org/oak/summary_statistics attributes: facet: name: facet description: the facet used to group the counts from_schema: https://w3id.org/oak/summary_statistics rank: 1000 key: true domain_of: - FacetedCount - ChangeTypeStatistic required: true filtered_count: name: filtered_count description: the number of items in the facet from_schema: https://w3id.org/oak/summary_statistics rank: 1000 domain_of: - FacetedCount - ChangeTypeStatistic range: integer required: true
</details>

### Induced

<details>
```yaml
name: FacetedCount
description: Counts broken down by a facet
comments:
- For example, edge counts may be grouped by predicate (relationship type)
from_schema: https://w3id.org/oak/summary_statistics
attributes:
  facet:
    name: facet
    description: the facet used to group the counts
    from_schema: https://w3id.org/oak/summary_statistics
    rank: 1000
    key: true
    alias: facet
    owner: FacetedCount
    domain_of:
    - FacetedCount
    - ChangeTypeStatistic
    range: string
    required: true
  filtered_count:
    name: filtered_count
    description: the number of items in the facet
    from_schema: https://w3id.org/oak/summary_statistics
    rank: 1000
    alias: filtered_count
    owner: FacetedCount
    domain_of:
    - FacetedCount
    - ChangeTypeStatistic
    range: integer
    required: true