I have a generated a data set with power law distribution using poweRlaw
package with the following code:
library("poweRlaw")
xmin = 1; alpha = 1.5
con_rns = rplcon(1000, xmin, alpha)
How can I get a log-log plot where x-axis is showing log(m)
and y-axis showing log(freq(m))
for all m in the dataset?