Last active
December 30, 2015 18:09
-
-
Save ChimeraCoder/7865598 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> p <- ggplot(data=masterdata8, aes(certainty, nanoseconds, colour="red")) + | |
> geom_point() + | |
> geom_point(data=masterdata4, colour="blue") + | |
> geom_point(data=masterdata1, colour="green") | |
> head(masterdata8) | |
certainty benchmark iterations nanoseconds | |
1 10 BenchmarkSafePrimes-8 10 13465462805 | |
2 11 BenchmarkSafePrimes-8 10 14741964114 | |
3 12 BenchmarkSafePrimes-8 10 16018608344 | |
4 13 BenchmarkSafePrimes-8 5 14646835899 | |
5 14 BenchmarkSafePrimes-8 5 15734636602 | |
6 15 BenchmarkSafePrimes-8 5 16736838514 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You could also try this: