Skip to content

Instantly share code, notes, and snippets.

@mattantonelli
Created April 29, 2026 13:26
Show Gist options
  • Select an option

  • Save mattantonelli/127640a7fa00f8cc5e85657cd434fd9c to your computer and use it in GitHub Desktop.

Select an option

Save mattantonelli/127640a7fa00f8cc5e85657cd434fd9c to your computer and use it in GitHub Desktop.
FFXIV Collect collection popularity
# All
counts = %w(achievements_count mounts_count minions_count orchestrions_count emotes_count bardings_count hairstyles_count armoires_count spells_count relics_count fashions_count records_count survey_records_count frames_count cards_count npcs_count leves_count facewear_count outfits_count occult_records_count)
total = Character.where('minions_count > 0').count.to_f
counts.each do |count|
name = count.split('_').first.capitalize
usage = Character.where("#{count} > 0").count
percentage = (usage / total) * 100.0
puts "#{name}: #{usage} (%.2f%%)" % percentage
end
# Manual Only
counts = %w(orchestrions_count emotes_count bardings_count hairstyles_count armoires_count spells_count fashions_count records_count survey_records_count frames_count cards_count npcs_count leves_count outfits_count occult_records_count)
total = Character.where('spells_count > 0').count.to_f
counts.each do |count|
name = count.split('_').first.capitalize
usage = Character.where("#{count} > 0").count
percentage = (usage / total) * 100.0
puts "#{name}: #{usage} (%.2f%%)" % percentage
end
@mattantonelli
Copy link
Copy Markdown
Author

Minions: 1073046 (100.00%)
Mounts: 1056473 (98.46%)
Achievements: 278401 (25.94%)
Relics: 230948 (21.52%)
Facewear: 220558 (20.55%)
Spells: 65805 (6.13%)
Emotes: 53267 (4.96%)
Hairstyles: 43244 (4.03%)
Orchestrions: 42804 (3.99%)
Bardings: 40353 (3.76%)
Armoires: 32396 (3.02%)
Fashions: 37110 (3.46%)
Cards: 30765 (2.87%)
Field Records: 29152 (2.72%)
Frames: 23289 (2.17%)
NPCs: 15579 (1.45%)
Survey Records: 13844 (1.29%)
Outfits: 9258 (0.86%)
Occult Records: 6390 (0.60%)
Leves: 6016 (0.56%)
Spells: 65805 (100.00%)
Emotes: 53268 (80.95%)
Hairstyles: 43244 (65.72%)
Orchestrions: 42804 (65.05%)
Bardings: 40353 (61.32%)
Fashions: 37110 (56.39%)
Armoires: 32396 (49.23%)
Cards: 30765 (46.75%)
Field Records: 29152 (44.30%)
Frames: 23289 (35.39%)
NPCs: 15579 (23.67%)
Survey Records: 13844 (21.04%)
Outfits: 9258 (14.07%)
Occult Records: 6390 (9.71%)
Leves: 6016 (9.14%)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment