How do we plot the logarithmic values of an input file which contains floating type numbers. For example, consider my file is in this format:
0.000012
0.000234
1.078229
3.246678
I want to plot a histogram for logarthmic values of the above values., i.e. for the values given below:
log(0.000012)
log(0.000234)
log(1.078229)
log(3.246678)
How can i do this using R statistical package?
Is this what you’re looking for?: