All Projects → timcdlucas → palettetown

timcdlucas / palettetown

Licence: other
Pokemon themed colour schemes for R.

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to palettetown

pokemon-randomizer
A Pokémon Rom randomizer tool written in Zig
Stars: ✭ 12 (-78.57%)
Mutual labels:  pokemon
pokemongo-json-pokedex
Transform the data from the Pokemon GO master files to a better readable & processable JSON file.
Stars: ✭ 56 (+0%)
Mutual labels:  pokemon
anypalette.js
🎨 Read/write all color palette file formats ❤🧡💛💚💙💜
Stars: ✭ 41 (-26.79%)
Mutual labels:  palettes
terco
A small collection of terminal colorschemes.
Stars: ✭ 12 (-78.57%)
Mutual labels:  palettes
stylegan-pokemon
Generating Pokemon cards using a mixture of StyleGAN and RNN to create beautiful & vibrant cards ready for battle!
Stars: ✭ 47 (-16.07%)
Mutual labels:  pokemon
pokemon-icons
Fan art inspired by Pokémon
Stars: ✭ 85 (+51.79%)
Mutual labels:  pokemon
POGOProtos
A central repository for all proto files of PokémonGO.
Stars: ✭ 136 (+142.86%)
Mutual labels:  pokemon
PogoMap
PoGo Map using React Native
Stars: ✭ 59 (+5.36%)
Mutual labels:  pokemon
online-randomizer
Fresh new playthroughs!
Stars: ✭ 23 (-58.93%)
Mutual labels:  pokemon
gracidea
🌺 A Pokémon 2D live map gathering all regions, including wandering pokémons and characters and animated tiles!
Stars: ✭ 163 (+191.07%)
Mutual labels:  pokemon
pokenode-ts
A lightweight Node.js wrapper for the PokéAPI with built-in types.
Stars: ✭ 102 (+82.14%)
Mutual labels:  pokemon
pakdemon
A simple react web app that will show pokemon and their info
Stars: ✭ 17 (-69.64%)
Mutual labels:  pokemon
graphql-pokemon
Extensive Pokémon GraphQL API
Stars: ✭ 81 (+44.64%)
Mutual labels:  pokemon
quickpalette
🏃‍♀️🎨 R package for quick extraction of color palettes from text and images
Stars: ✭ 24 (-57.14%)
Mutual labels:  palettes
Pokebot
Pokémon for Discord
Stars: ✭ 15 (-73.21%)
Mutual labels:  pokemon
hax
Zero-config Hacky Hackpecker setup
Stars: ✭ 16 (-71.43%)
Mutual labels:  palettes
PokemonRNGGuides
A repository of Pokemon RNG abuse guides
Stars: ✭ 62 (+10.71%)
Mutual labels:  pokemon
showdown-battle-bot
Socket Battle Bot for Pokemon Showdown (http://pokemonshowdown.com/)
Stars: ✭ 19 (-66.07%)
Mutual labels:  pokemon
ps
Modular Pokémon Showdown
Stars: ✭ 38 (-32.14%)
Mutual labels:  pokemon
mkm-sdk
Python SDK for Magickartenmarkt API
Stars: ✭ 33 (-41.07%)
Mutual labels:  pokemon

palettetown

Total Downloads Build Status

An R package providing pokemon colour palettes.

This package is very much inspired by pokepalettes.

Note that Pokemon, pokedex and all pokemon names are trademarks of Nintendo. I own nothing.

Installation

To install from CRAN

install.packages('palettetown')
library(palettetown)

To install development version

library(devtools)
install_github('timcdlucas/palettetown')
library(palettetown)

Usage

See palettes

# Show ten of the better palettes
pokedex()

plot of chunk pokedex

# Show ten palettes starting from pokemon #155
# Get 7 fairly distinct colours for each.
pokedex(155, 7)

plot of chunk pokedex

# Show ten palettes starting from Metapod
pokedex('Metapod')

plot of chunk pokedex

# Show ten palettes that are fairly colour blind friendly
pokedex(cb = 1)

plot of chunk pokedex

Base graphics

plot(rnorm(20), rnorm(20), col = pokepal(pokemon = 137, spread = 6), pch = 16, cex = 1.8)

plot of chunk base

ggplot2

# palettetown doesn't import ggplot2
library(ggplot2)


qplot(Sepal.Length, Sepal.Width, colour = Species, data=iris, size = 2) +
  scale_colour_poke(pokemon = 156, spread = 3)

plot of chunk ggplot2

qplot(factor(carb), data=mtcars, geom="bar", 
  fill = factor(carb)) +
  scale_fill_poke(pokemon = 'Quilava', spread = 6)

plot of chunk ggplot2

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].