All Projects → AndreaCirilloAC → Paletter

AndreaCirilloAC / Paletter

build your palette from a picture √

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Paletter

Svg Radar Chart
Generate SVG radar charts.
Stars: ✭ 45 (-42.31%)
Mutual labels:  dataviz
Vue D3 Workshop
Workshop content material and excercises for Suncoast Developers
Stars: ✭ 63 (-19.23%)
Mutual labels:  dataviz
Nivo
nivo provides a rich set of dataviz components, built on top of the awesome d3 and React libraries
Stars: ✭ 9,550 (+12143.59%)
Mutual labels:  dataviz
Edav
edav.info/
Stars: ✭ 45 (-42.31%)
Mutual labels:  dataviz
Matplotlib Multilayer Network
small template code to create a multilayer network using matplotlib and networkx
Stars: ✭ 60 (-23.08%)
Mutual labels:  dataviz
Eventdrops
A time based / event series interactive visualization using d3.js
Stars: ✭ 1,164 (+1392.31%)
Mutual labels:  dataviz
Prism
Creates a beautiful artboard color palette with all your 'Document Colors' and their respective color label in a variety of formats.
Stars: ✭ 1,027 (+1216.67%)
Mutual labels:  palette
Opendatacam
An open source tool to quantify the world
Stars: ✭ 1,214 (+1456.41%)
Mutual labels:  dataviz
Ggstatsplot
Enhancing `ggplot2` plots with statistical analysis 📊🎨📣
Stars: ✭ 1,121 (+1337.18%)
Mutual labels:  dataviz
React Fusioncharts Component
ReactJS component for FusionCharts JavaScript Charting library.
Stars: ✭ 73 (-6.41%)
Mutual labels:  dataviz
Kirby Color Palette
A color palette to pick colors from in the panel. Kirby 3 only.
Stars: ✭ 47 (-39.74%)
Mutual labels:  palette
Leaflet Swoopy
⤵️ Swoopy Arrow Plugin for Leaflet
Stars: ✭ 52 (-33.33%)
Mutual labels:  dataviz
Dazv
canvas 可视化图表
Stars: ✭ 70 (-10.26%)
Mutual labels:  palette
Easychart
A visual editor for the world's best web charting tool: Highcharts.
Stars: ✭ 45 (-42.31%)
Mutual labels:  dataviz
Color Names
Large list of handpicked color names 🌈
Stars: ✭ 1,198 (+1435.9%)
Mutual labels:  palette
Django Rest Pandas
📊📈 Serves up Pandas dataframes via the Django REST Framework for use in client-side (i.e. d3.js) visualizations and offline analysis (e.g. Excel)
Stars: ✭ 1,030 (+1220.51%)
Mutual labels:  dataviz
Reaviz
📊 Data visualization library for React based on D3
Stars: ✭ 1,141 (+1362.82%)
Mutual labels:  dataviz
Krypton Net 5.470
A update to Component factory's krypton toolkit to support the .NET 4.7 framework.
Stars: ✭ 79 (+1.28%)
Mutual labels:  palette
Leaflet Maps With Google Sheets
Customize Leaflet maps with a linked Google Sheets template and GeoJSON data on GitHub
Stars: ✭ 77 (-1.28%)
Mutual labels:  dataviz
Ggpol
🌍 Parliament diagrams and more for ggplot2
Stars: ✭ 71 (-8.97%)
Mutual labels:  dataviz

paletteR

PaletteR is an R package that is able to draw an optimised palette from a custom image. The palette is obtained by applying statistical learning to the image provided and optimising the distribution of colours.

More on the math behind the package can be found at:

http://www.andreacirillo.com/2018/05/08/how-to-use-paletter-to-automagically-build-palettes-from-pictures/

Rdoc

example

Tondo Doni, Michelangelo Buonarroti, 1503-1504

Installation

The package is currently only on Github. You can install it as follows:

devtools::install_github("AndreaCirilloAC/paletter")

usage

image_path <- "path_to_your_image"
colours_vector <- create_palette(image_path = image_path,
number_of_colors =32,
type_of_variable = categorical")

ggplot(data = mtcars, aes(x = rownames(mtcars),y = hp,color = rownames(mtcars),
                          fill = rownames(mtcars))) +
  geom_bar(stat = 'identity') +
  scale_color_manual(values = colours_vector) +
  scale_fill_manual(values=colours_vector)+
  theme_minimal() +
  guides(size = FALSE) +
  theme(legend.position = "bottom") +
  labs(title = "disp vs hp")+
  coord_flip()

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].