Tagged Questions
The power-law tag has no wiki summary.
5
votes
4answers
3k views
Random number generator that produces a power-law distribution?
I'm writing some tests for a C++ command line Linux app. I'd like to generate a bunch of integers with a power-law/long-tail distribution. Meaning, I get a some numbers very frequently but most of ...
3
votes
2answers
321 views
Power law curve fitting for social network queries
Twitter recently announced that you can approximate the rank of any given twitter user with high accuracy by inputting their follower count in the following formula:
exp($a + $b * ...
2
votes
4answers
255 views
Power-law distribution in T-SQL
I basically need the answer to this SO question that provides a power-law distribution, translated to T-SQL for me.
I want to pull a last name, one at a time, from a census provided table of names. ...
1
vote
2answers
640 views
Linear regression in R (normal and logarithmic data)
I want to carry out a linear regression in R for data in a normal and in a double logarithmic plot.
For normal data the dataset might be the follwing:
lin <- data.frame(x = c(0:6), y = c(0.3, ...
1
vote
3answers
469 views
Java: Power Law Distribution
I'm trying to generate p2p network according to power law distribution. How to generate power law distribution in java? does it have any library?
thanks :)
1
vote
3answers
6k views
Correct way to standardize/scale/normalize multiple variables following power law distribution for use in linear combination
I'd like to combine a few metrics of nodes in a social network graph into a single value for rank ordering the nodes:
in_degree + betweenness_centrality = informal_power_index
The problem is ...
0
votes
1answer
63 views
How to fit powerlaw to a histogram with matplotlib
I am trying to fit a power law to a histogram (more exact Pareto distribution). I did it with my own function, where I check for smallest sum of squares of difference. But this means I need to loop ...