Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Best Kon and Koff guess for analysis #7

Open
carandraug opened this issue Jan 25, 2013 · 0 comments
Open

Best Kon and Koff guess for analysis #7

carandraug opened this issue Jan 25, 2013 · 0 comments

Comments

@carandraug
Copy link
Member

Another plot for the analysis

-- make a plot of the best guess of Kon and Koff (check the grid from Full Model 2)

maybe use a red big cross for the best guess
something different for the 5 other best guess
something of increasingly smaller size for all the other

plot(best guess, big red large circle, size 15)
plot(5 bestes, medium green circle, size 10)
num = numel(guesses) - best - 5 best = numel -6

to calculate the size of the dot is a linear regression with negative slope

x = nummer of guesses

y = size

slope = (diff of size = 9 to 1, hence 8) / num
y-intercept = max size of dot (y when x is one) + abs(slope)

for i = i:num
size = slope*i + intercept
plot(i, size, blue)
endfor

Note: the grid already comes sorted by ssr

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant