Posts by RaoniRAO • 21 points
2 posts
-
1
votes2
answers558
viewsA: How to make concentric circles in r Plot
Building on Marcus Nunes' excellent response, you could also use the function symbols() package graphics. Just remember to use add=TRUE (for him to add the circle to a preexisting Plot) and inches =…
-
1
votes1
answer48
viewsA: Replace double for with double lapply
Hello! Actually apply’s can be even slower than loops, if in the loop you take care to preallocate your vector. As for your problem, it seems you want to make all combinations of tab1$col1 and…