Peinador | R Documentation |
The data includes several variables describing 833 aircraft operations — 418 take-offs and 415 landings — involving 27 different aircraft types at Peinador Airport (Vigo, Spain) during January 2025.
Peinador
A data frame with 27 rows and 6 columns (variables):
Aircraft type
Aircraft index (subscript)
Number of takeoffs
Number of landings
Maximum takeoff weight (in tons)
Maximum landing weight (in tons)
AENA. (2025, April 23). Estadísticas de tráfico aéreo: Consultas personalizadas. https://www.aena.es/es/estadisticas/consultas-personalizadas.html.
# Allocation by MTOW (in t)
multiclonesrules(Peinador$MTOW, Peinador$TO, c("SFC", "SEC", "CEC", "CP"),
labels = FALSE)
# Allocation by MLW (in t)
positives <- Peinador$LDG > 0
MLW <- Peinador$MLW[positives]
LDG <- Peinador$LDG[positives]
multiclonesrules(MLW, LDG, c("SFC", "SEC", "CEC", "CP"), labels = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.