Showing posts with label big data. Show all posts
Showing posts with label big data. Show all posts
Friday, September 06, 2019
Sunday, November 20, 2016
Building Scalable Data Pipelines with Microsoft R Server and Azure Data Factory
Useful information on big data computation using Microsoft platform.
Tuesday, August 04, 2015
New package "dplyrr" - Utilities for comfortable use of dplyr with databases
This package is potentially useful for big data analysis.
Friday, June 19, 2015
Sunday, June 14, 2015
How to use SparkR within Rstudio?
Setting up Spark and SparkR is quite easy (assume you are running v.1.4): just grab one of the pre-built binaries and unzip to a folder. There is also a shell script to start SparkR from command line. The document suggest to put the following lines
Sys.setenv(SPARK_HOME="/home/shige/bin/spark")
.libPaths(c(file.path(Sys.getenv("SPARK_HOME"), "R", "lib"), .libPaths()))
library(SparkR)
sc <- sparkR.init(master="local")
into the .Rprofile file. This, however, has the undesirable side effect of adding yet another directory to which R packages can be installed.
My solution is:
1. Create a soft link of the SparkR directory in the the directory where other R packages are installed (ln -s /home/shige/bin/spark/R/lib/ SparkR /home/shige/R/x86_64-pc-linux- gnu-library/3.2)
2. Add (Sys.setenv(SPARK_HOME="/home/shige/bin/spark")) to the .Rprofile file.
3. Add (Sys.setenv(SPARKR_SUBMIT_ARGS ='"--packages" "com.databricks:spark-csv_2.10:1.0.3" "sparkr-shell"')) to the .Rprofile.
All set.
Sys.setenv(SPARK_HOME="/home/shige/bin/spark")
.libPaths(c(file.path(Sys.getenv("SPARK_HOME"), "R", "lib"), .libPaths()))
library(SparkR)
sc <- sparkR.init(master="local")
into the .Rprofile file. This, however, has the undesirable side effect of adding yet another directory to which R packages can be installed.
My solution is:
1. Create a soft link of the SparkR directory in the the directory where other R packages are installed (ln -s /home/shige/bin/spark/R/lib/
2. Add (Sys.setenv(SPARK_HOME="/home/shige/bin/spark")) to the .Rprofile file.
3. Add (Sys.setenv(SPARKR_SUBMIT_ARGS ='"--packages" "com.databricks:spark-csv_2.10:1.0.3" "sparkr-shell"')) to the .Rprofile.
All set.
Saturday, June 13, 2015
Friday, May 22, 2015
Monday, September 15, 2014
Monday, June 23, 2014
Monday, May 12, 2014
The Big Data Brain Drain: Why Science is in Trouble
Insightful observation and interesting comments here.
Wednesday, November 27, 2013
Monday, November 25, 2013
Use the open source R in the similar way to SAS
Here is how. Very good examples!
By the way, learning materials for the ff package are surprisingly sparse.
By the way, learning materials for the ff package are surprisingly sparse.
Tuesday, September 03, 2013
Wednesday, April 03, 2013
R 3.0 supports long vector
It is a very exciting news that the new R 3.0 supports long vector! This is major step toward a viable big data platform.
Monday, February 13, 2012
Subscribe to:
Posts (Atom)