Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Talking at the Applied Math Lab in Agrocampus Rennes

Talking at the Applied Math Lab in Agrocampus Rennes

Personal thoughts around developing STATS software, as seen mainly from my experience within academia

Gaston Sanchez

November 29, 2013
Tweet

Other Decks in Research

Transcript

  1. Abstract Some personal thoughts around developing STATS software, as seen

    mainly from my experience within academia (i.e. doing research)
  2. Hi

  3. f(T) = g(T, T) g(T, W) = tr(T' A(w) T)

    g(T, W) < h(T, W) Maximize tr(T' A(w) T) T' T = 1 revolutionary breakthrough, statistical method
  4. Very Fancy Method for Analyzing and Visualizing Multivariate Data Main

    Authora,b, Graduate Studentb, Assistantb a Renowned Statistical Research Center b Department of Stuffmetrics and Computational Methods, Famous School (Pretty City) Abstract This paper depicts a new methodology devoted to analyze complex data generated from extremely expensive experiments in the field of Stuffmetrics. The ultimate goal is to bla, bla, bla One or more publications
  5. # routine XY fun_xy <- function(x, y) { n =

    nrow(x) p = ncol(x) q = ncol(y) mx = rowMeans(x) my = rowMeans(y) z = t(x) %*% y ... lots of functions and scripts
  6. if (mode(x) == ‘numeric’ && x > 0 && x

    %% 1 == 0) TRUE else FALSE
  7. if (mode(x) == ‘numeric’ && x > 0 && x

    %% 1 == 0) TRUE else FALSE is_positive_integer(x)