Not all proportion data are binomial outcomes

[This article was first published on Are you cereal? » R, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

da_vinci_proportions

It really is trivial. Not every proportion is frequency. There are things that have values  bounded between 0 and 1 and yet they are neither probabilities, nor frequencies. Why do I even bother to write this? Because some kinds of proportions should be treated as unbounded continuous variables, and should be analyzed using appropriate statistical machinery (e.g. assuming normal error structure). This may not be entirely clear after reading the chapter in Michael Crawley’s The R Book (2007) that deals with proportions (Chapter 16: “Proportion data”) and that focuses exclusively on the proportions which are frequencies.

Proportion is frequency when we count numbers of binary outcomes of a bernoulli-distributed random process (e.g. coin toss). If one is a frequentist he can say that the proportion (or frequency) of heads in the total number of flips is equal to the bias of the coin, or he can directly link the frequency to the probability that the coin is equal. Coin tosses are a dull example, so here are other kinds of data in which proportions are frequencies and which follow the same distribution: percentage mortalities, infection rates of diseases, proportions of patients responding to treatments, sex ratios and so on (examples taken from Crawley, 2007).

These data should be modeled with the assumption of binomial error structure, for example by using logistic regression. Here is an example of such data (black dots; the data are artificial) and model (red line):

prop_recovered

Proportion is not frequency when we use the proportion to standardize and relativize continuous data. For example, length of a male leg covers lower proportion of the total body height than length of a female leg. Or: Percentages of weight gains or losses after a medical treatment. Or: Proportional decrease of population of an endangered species resulting from proportional destruction of an area of a rain forest. And so on.

Interestingly, these proportions can sometimes have interpretable negative values (e.g. negative percentage weight loss is weight gain). Also, it is not as clear as in the previous case what error structure should we assume. I would guess that in most cases it would be the distribution of the original, non-proportional and “non-standardized” variable.

Here is an example of proportional weight loss of patients (black dots; the data are artificial) after a drug treatment. In this case normal linear regression model is fitted:

prop_drugs

As I’ve said, it is quite trivial. However, do let me know if I am trivially mistaken here.

 

To leave a comment for the author, please follow the link and comment on their blog: Are you cereal? » R.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)