Directed here from StackOverflow
Let's say I want to assess if there is a correlation between two fields, one of which I know to have a power distribution.
A lot of the information I read assumes normal distribution.
So how should I proceed if the distribution is not normal, and the correlation seems non-linear?
It seems visually that, that the correlation is non-linear.
If you'd like to see the data, it's available here: https://drive.google.com/file/d/1_CqquGevCafoCIRYbfk3lU9ZimEitNe1/view?usp=sharing
To collect the data:
c3.runStatsFull = read.csv("./0962d301-2a24-4cc9-ba3b-90759670979f_complete/RunStats.csv") worker <- read.csv("./999ba3af-ad49-4f1c-9627-14b1d4e2cce9_complete/RunStats.csv") c3.runStatsFull <- rbind(c3.runStatsFull, worker) worker <- read.csv("./6135f1e9-da7c-4180-aa53-3e170d50153d_complete/RunStats.csv") c3.runStatsFull <- rbind(c3.runStatsFull, worker) worker <- read.csv("./a3819f79-6ef1-4b4c-9d71-35a2fc380c3b_complete/RunStats.csv") c3.runStatsFull <- rbind(c3.runStatsFull, worker) worker <- read.csv("./db76feda-f5f5-4648-897d-de99027d5682_complete/RunStats.csv") c3.runStatsFull <- rbind(c3.runStatsFull, worker) The likely source of the power distribution, is that I am working with scale free networks, generated in the following way:
randomGraph <- barabasi.game(nodeCount, power = 1.2, m = 1, out.dist = NULL, out.seq = NULL, out.pref = FALSE, zero.appeal = 1, directed = FALSE, algorithm = "psumtree", start.graph = NULL) 



