This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function copyOnConditional() { | |
var ss=SpreadsheetApp.getActiveSpreadsheet();// some global variables | |
var master = ss.getSheetByName('Raw Data'); | |
var colWidth = master.getMaxColumns(); | |
//function copyRowsOnCondition() { | |
var data = master.getDataRange().getValues(); | |
for(n=2;n<data.length;++n){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(caret) | |
library(doParallel) | |
registerDoParallel(cores = 2) | |
# Read data. | |
data <- read.csv('train.csv') | |
test <- read.csv('test.csv') | |
# Set classification column to factor. |
OlderNewer