Automate alllll the things!
Tutorial on scheduling a R script to run regularly using Heroku Scheduler.
official daine visual archive

@theartofmadeline

PR's Tumblrdome

if i look back, i am lost

#extradirty
One Nice Bug Per Day
trying on a metaphor
art blog(derogatory)

roma★
almost home
"I'm Dorothy Gale from Kansas"
Aqua Utopia|海の底で記憶を紡ぐ
cherry valley forever
Lint Roller? I Barely Know Her
Cosmic Funnies

★

No title available
No title available
No title available
Mike Driver
seen from Canada
seen from Chile
seen from Ukraine
seen from Germany
seen from Albania

seen from Paraguay

seen from Malaysia
seen from United Kingdom
seen from Bangladesh

seen from Malaysia

seen from Germany

seen from Bangladesh
seen from United States

seen from Bangladesh
seen from Russia

seen from United States

seen from United States

seen from United States
seen from Vietnam
seen from United States
@intelrefinery-blog
Automate alllll the things!
Tutorial on scheduling a R script to run regularly using Heroku Scheduler.
A cool way to visualize time-series data in R.
Find the tutorial here.
Finding which variables in a dataset are most “similar”, in some way, to the outcome variable of interest can be a very useful first step in understanding the dataset and planning the next steps. The R package ClustOfVar provides an implementation for this purpose in the mixedVarSim() function.
Check out the full workflow at my portfolio!
Re-order column for sorted bar plot
Sorting a column in the dataframe does not seem to be sufficient to get a barplot that is also sorted by value. Instead, the column needs to be sorted within the ggplot() function call:
ggplot(data=df, aes(x=reorder(colX, -colY), y=colY)) + geom_bar(stat="identity")
StackOverflow answer
Hierarchical clustering of variables using the R package ClustOfVar.
Supervised discretization of continuous variables using the R package scorecard.