I'm developing an app designed to handle big data and was having problems graphing the data in a useful way because of the sheer amount of plot points. My initial idea was to create a little algorithm that, based on the size of the data, divides the data points into about 30 subsets and takes the average of all the points in these subsets (what are the faults of this implementation by the way)?
Then I learned about bigVis, which does a lot of the big data representation for you, and I really want to try this library out.
I have a problem installing it. I've done:
>install_github("devtools")
>install.packages("bigVis")
Warning in install.packages :
package ‘bigVis’ is not available (for R version 3.0.1)
I've also done:
>install_github("devtools")
>devtools::install_github("bigvis")
* installing *source* package 'bigvis' ...
** libs
*** arch - i386
ERROR: compilation failed for package 'bigvis'
* removing 'C:/Program Files/R/R-3.0.1/library/bigvis'
Error: Command failed (1)
Does anyone know what this error is?
Thanks
find_rtools()
returningTRUE
– KornsRcpp
? And what is the result ofSys.which("g++")
? One of your error logs indicates the g++ compiler can't be found. I installed g++ recently to solve a different problem... – Bosh