Publications by arthur charpentier

Binomial regression model

18.11.2013

Most of the time, when we introduce binomial models, such as the logistic or probit models, we discuss only Bernoulli variables, . This year (actually also the year before), I discuss extensions to multinomial regressions, where  is a function on some simplex. The multinomial logistic model was mention here. The idea is to consider, for insta...

2050 sym R (1608 sym/5 pcs) 34 img

Conditional densities, on one single graph

05.12.2013

With Stéphane Tufféry we’ve been working on credit scoring1 and we’ve been using the popular german credit dataset, > myVariableNames <- c("checking_status","duration","credit_history", + "purpose","credit_amount","savings","employment","installment_rate", + "personal_status","other_parties","residence_since","property_magnitude", + "age","...

947 sym R (1515 sym/2 pcs) 2 img

Random points on the Earth

07.12.2013

The problem with puzzles is that you keep it in your head for days, until you find an answer. Or at least some ideas about a possible answer. This is what happened to me a few weeks ago, when a colleague of mine asked me the following question : Consider points uniformly distributed on a sphere. What is the probability that the points lie on a ...

3831 sym R (637 sym/7 pcs) 80 img

On Wigner’s law (and the semi-circle)

16.12.2013

There is something that I love about mathematics: sometimes, you discover – by chance – a law. It has always been there, it might have been well known by some people (specialized in some given field), but you did not know it. And then, you discover it, and you start wondering how comes you never heard about it before… I experienced that fee...

1896 sym R (943 sym/6 pcs) 17 img

Conditional dependence measures

17.12.2013

This week, I spend some time at the Workshop on Nonparametric Curve Smoothing conference at Concordia. Yesterday afternoon, Noël Veraverbeke show an interesting graph, to illustrate conditional copulas (and the derivation of conditional dependence measures, such as Kendall’s tau, or Spearman’s rho). A long time ago, in my PhD thesis (mainly...

2618 sym R (1781 sym/6 pcs) 24 img 2 tbl

Random points on some hemisphere

18.12.2013

In my previous post, I tried to answer the following question Consider  points uniformly distributed on a sphere. What is the probability that the  points lie on a same hemisphere, for some hemisphere (there is no south or north here) ? If I have been able to use Monte Carlo simulations in dimension 2 (on a circle, not on a sphere), I could...

2587 sym R (1623 sym/5 pcs) 32 img

Sequences defined using a Linear Recurrence

06.01.2014

In the introduction to the time series course (MAT8181) this morning, we did spend some time on the expression of (deterministic) sequences defined using a linear recurence (we will need that later on, so I wanted to make sure that those results were familiar to everyone). First order recurence The most simple case is the first order recurence,...

2644 sym R (621 sym/6 pcs) 74 img

Statistical Interests in Large Cities

10.01.2014

I always thought that there were some kind of schools in statistics, areas (not to say universities or laboratories) where people had common interest in term of statistical methodology. Like people with strong interest in extreme values, or in Lévy Processes. I wanted to check this point so I did extract information about articles puslished in a...

4832 sym R (11524 sym/12 pcs) 22 img

Visualizing Autoregressive Time Series

21.01.2014

In the MAT8181 graduate course on Time Series, we started discussing autoregressive models. Just to illustrate, here is some code to plot  – causal – process, > graphar1=function(phi){ + nf <- layout(matrix(c(1,1,1,1,2,3,4,5), 2, 4, byrow=TRUE), respect=TRUE) + e=rnorm(n) + X=rep(0,n) + for(t in 2:n) X[t]=phi*X[t-1]+e[t] + plot(X[1:6000],ty...

841 sym R (2018 sym/6 pcs) 18 img

Causal Autoregressive Time Series

21.01.2014

In the MAT8181 graduate course on Time Series, we will discuss (almost) only causal models. For instance, with , with some white noise , those models are obtained when . In that case, we’ve seen that was actually the innovation process, and we can write which is actually a mean-square convergent series (using simple Analysis arguments on se...

2899 sym R (411 sym/7 pcs) 74 img