Segments
segments.Rd
This dataset contains information about various events including promotions, gacha events, and experiments. Each event has details such as start and end dates, additional descriptions, and graphical representation attributes.
Format
A tibble with 658 rows and 8 variables:
- event_type
Type of the event, a character string.
- start_date
Start date of the event, in Date format.
- end_date
End date of the event, in Date format.
- extra_details
Additional details about the event, a character string.
- colors
Color associated with the event, a character string.
- key
A numeric identifier for the event.
- y_start
Starting y-coordinate for graphical representation, a numeric value.
- y_end
Ending y-coordinate for graphical representation, a numeric value.
Examples
data(segments)
head(segments)
#> # A tibble: 6 × 6
#> event_type start_date end_date extra_details colors key
#> <chr> <date> <date> <chr> <chr> <dbl>
#> 1 a 2022-11-25 2022-11-29 Some Extra Details About the Ev… #8c56… 1
#> 2 a 2022-12-16 2022-12-30 Some Extra Details About the Ev… #8c56… 2
#> 3 a 2023-02-15 2023-03-01 Some Extra Details About the Ev… #8c56… 3
#> 4 b 2023-05-29 2023-06-21 Some Extra Details About the Ev… #1f77… 4
#> 5 c 2023-05-30 2023-06-01 Some Extra Details About the Ev… #98df… 5
#> 6 d 2023-05-31 2023-07-04 Some Extra Details About the Ev… #2ca0… 6