Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Question with regards to taking the logarithm of a variable (Statistics Question)

Say you have a bar graph displaying data for an example "Cost of Computer Orders by the Population" and you are trying to analyze the data and find a distribution. The information does not indicate anything so you take the logarithm of the variable and the graph then resembles a normal distribution. I know that the normal distribution basically means the mean, but what does taking the logarithm of the information indicate?

share|improve this question
Posted to wrong forum, my apologies. – Masterminder Jan 26 at 2:29

closed as off topic by leonbloy, DocMax, Jesus Ramos, Perception, Mark Jan 26 at 12:21

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

It seems that you are describing the lognormal distribution: a random variable is said to come from a lognormal distribution if its logarithm is distributed normally.

In practice, this can describe processes where the value cannot go below zero, and most of the population is close to the left (right skewness). For example: salaries, home prices, bone fractures, number of girlfriends all could be reasonably modeled with a log normal distribution.

For example: say that on average young adults have had 2.5 girlfriends. A few have never had one; you cannot have "negative number" of girlfriends, and a few bastards have had 25. However, most young adults will have had between, say, one and three.

share|improve this answer
1  
I think you may have meant skewed right (tail to the right). – chuff Jan 26 at 4:04
@Chuff: You are right. I will edit my answer. Thanks! – Arrieta Jan 26 at 4:37

if you display the values of x as their log(x) then the line in the diagramm is a straight line, when the values grow exponential. This is a stastistically trick for a fast check if values grow exponentionally.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.