Purpose: Time series analysis is a frequent method used to understand the effect of a parameter over time and I'm curious to learn about how those models are built in R and the theory beneath them.
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
package src.LinkedList; | |
public class LinkedList { | |
public Node head; | |
public int listCount; | |
public LinkedList(){ | |
head = new Node(0); | |
listCount = 0; | |
} |
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(shiny) | |
# Example usage: | |
# lmGadget(mtcars, "wt", "mpg") | |
# | |
# Returns a list with two items: | |
# $data: Data with excluded rows removed. | |
# $model: lm (model) object. | |
lmGadget <- function(data, xvar, yvar) { | |
library(miniUI) |
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
## This is a very silly script to get JSON data for an R twitter bot that produces | |
## tweets of the form "verb that noun" using verbs from package:base and nouns from | |
## built in R data. | |
## | |
## It uses @v21's http://cheapbotsdonequick.com/ | |
## | |
## David L. Miller 2015 MIT license | |
## update from Nick Golding 2018 | |
cat("{\n") |
Warning This is SEVERELY outdated, the current jupyter version is > 6.X, please refer to your current jupyter notebook installation!
Disclaimer : I just copied those shortcuts from Jupyter Menú
> Help
> Keyboard Shortcuts
, I didn't wrote them myself.
Check your current shortcuts in your Help, shortcuts coule have been modified by extensions or your past self.
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(htmltools) | |
addUIDep <- function(x) { | |
jqueryUIDep <- htmlDependency("jqueryui", "1.10.4", c(href="shared/jqueryui/1.10.4"), | |
script = "jquery-ui.min.js", | |
stylesheet = "jquery-ui.min.css") | |
attachDependencies(x, c(htmlDependencies(x), list(jqueryUIDep))) | |
} |
Job title – Data Scientist
Basic Qualifications
- Bachelor’s Degree in Mathematics, Technical Science, Computer Science (or equivalent) or Engineering
- Minimum 1 year programming experience in at least one item from each:
- R, SAS,Mathematica, MATLAB, Sagemath
- Python, Ruby, Perl, Java, Scala
- Linux
- Bash scripting including sed, awk, cut, uniq, sort, tr
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
10 < 3 ; | |
var red = [0, 100, 63]; | |
var orange = [40, 100, 60]; | |
var green = [75, 100, 40]; | |
var blue = [196, 77, 55]; | |
var purple = [280, 50, 60]; | |
var myName = "Jasmine"; | |
var letterColors = [red, orange, green, blue, purple] | |
if (10 < 3) { |
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
var userChoice = prompt("Do you choose rock, paper or scissors?"); | |
var computerChoice = Math.random(); | |
if (computerChoice < 0.34) { | |
computerChoice = "rock"; | |
} else if(computerChoice <= 0.67) { | |
computerChoice = "paper"; | |
} else { | |
computerChoice = "scissors"; | |
} console.log("Computer: " + computerChoice); | |
var compare = function(choice1, choice2) { |
NewerOlder