Publications by Kay Cichini
How to Download and Run Google Docs Script from within the R-Console
…There is not much to it:upload a txt file with your script, share it for anyone with the link, then simply run something like the below code. ps: When using the code for your own purpose mind to change “https” to “http” and to insert your individual document id.pss: You could use download.file() in this way for downloading any file fr...
760 sym 4 img
Using SyntaxHighlighter and R Brush in Blogger
If you're thinking it is time to give the code examples in your blog a more readable look, you may follow this path and use the SyntaxHighlighterFirst thing: check the SyntaxHighlighter Website for the basics.Read more » Related To leave a comment for the author, please follow the link and comment on their blog: theBioBucket*. R-...
628 sym 2 img
A Function for Adding up Matrices with Different Dimensions
I was unlucky finding a function that can handle matrices with different dimensions. Thus, I coded a little function that sums up matrices, also coping with matrices with different dimensions.Read more » Related To leave a comment for the author, please follow the link and comment on their blog: theBioBucket*. R-bloggers.com offe...
611 sym 2 img
..Some More Regex Examples Added to Collection
Find the below examples added to my list of regex-examples HERE. Read more » Related To leave a comment for the author, please follow the link and comment on their blog: theBioBucket*. R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an ...
472 sym 4 img
..A Quick Geo-Trick for GoogleMaps in R (using dismo)
… I thought this geocoding-bit might be worth to share (found HERE when searching the web for dismo-documentation).Read more » Related To leave a comment for the author, please follow the link and comment on their blog: theBioBucket*. R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topi...
522 sym 4 img
Retrieve GBIF Species Occurrence Data with Function from dismo Package
..The dismo package is awesome: with some short lines of code you can read & map species distribution data from GBIF (the global biodiversity information facility) easily:Read more » Related To leave a comment for the author, please follow the link and comment on their blog: theBioBucket*. R-bloggers.com offers daily e-mail updates about R n...
578 sym 4 img
Producing Google Map Embeds with R Package googleVis
(1) for producing html code for a Google Map with R-package googleVis do something like: library(googleVis) df <- data.frame(Address = c("Innsbruck", "Wattens"), Tip = c("My Location 1", "My Location 2")) mymap <- gvisMap(df, "Address", "Tip", options = list(showTip = TRUE, mapType = "normal", enabl...
590 sym R (291 sym/1 pcs) 2 img
A Word Cloud with Spatial Meaning
..Some time ago I did a word cloud for representing a Google Scholar search result. Tal Galili pointed me at a post by Drew Conway that expanded on the topic of word clouds lacking spatial meaning. In fact the spatial ordering of words in a word cloud is arbitrary and meaningless..As I am an ecologist, I soon came to the idea that text could be t...
1231 sym 4 img
Animation Newby Excercise with R-Package {animation}
Try this very simple & illustrative example for creating an animation with the animation package:myfun <- function ( ) { n = ani.options("nmax") x = sample(1:n) y = sample(1:n) for (i in 1:n) { plot(x[i], y[i], cex = 3, col = 3, pch = 3, , lwd = 2, ...
505 sym R (472 sym/1 pcs) 4 img
Function for Adding Transparency to JPEG (Output = PNG)
..see the function-code HERE. Related To leave a comment for the author, please follow the link and comment on their blog: theBioBucket*. R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job. Want to share your content...
425 sym 4 img