Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rhettjel/rlabels
Libreria JLutils para etiquetas en ggplot
https://github.com/rhettjel/rlabels
Last synced: 2 days ago
JSON representation
Libreria JLutils para etiquetas en ggplot
- Host: GitHub
- URL: https://github.com/rhettjel/rlabels
- Owner: rhettjel
- License: cc0-1.0
- Created: 2020-04-29T18:30:00.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-04-29T18:48:06.000Z (over 4 years ago)
- Last Synced: 2024-12-09T19:43:31.395Z (13 days ago)
- Language: R
- Size: 7.81 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rlabels
Libreria JLutils para etiquetas en ggplot
Descargue estos dos ficheros `stat_fill_labels.R` y `inv_cumsum.R` para despues incluirlo en nuestro proyecto R, recuerde que
estos ficheros deben estar ubicados en su carpeta compartida con R (si no lo sabe use **`getwd()`**) :```r
source(file = "stat_fill_labels.R")
source(file = "inv_cumsum.R")
```Una vez ejecutado el anterior, por ejemplo use ggplot:
```r
ggplot(data=casos,aes(x=w,fill=label,weight=prop)) + stat_fill_labels()
```La libreria no es de mi auditoria, pertenece a larmarange, para mas información sobre su documentación visite
[documentación](http://larmarange.github.io/JLutils/reference/stat_fill_labels.html)