Tagged Questions
3
votes
1answer
284 views
R ggplot2 - annotate text with superscript
I want to add an R^2 value to my plot. I passed the label to geom_text() as follows;
geom_text(aes(x,y,label=caption),parse=T,
data.frame(x=-2,y=80,caption=("R^2=0.43"))))
but it plots as ...
3
votes
2answers
834 views
Mixed Merge in R - Subscript solution?
Note: I changed the example from when I first posted. My first example was too simplified to capture the real problem.
I have two data frames which are sorted differently in one column. I want to ...
2
votes
1answer
156 views
R: invalid subscript type 'list'
I'm trying to use the indices of a sorted column of a dataset. I want to reorder the entire dataset by one sorted column.
area.sort<-sort(xsample$area1, index.return=TRUE)[2]
The output is a ...
-1
votes
2answers
94 views
Subscripts (or other math formula) in ggplot2 legend factor labels
I tried to add subscripts to my ggplot2 geom_point colour legend by using scale_colour_discrete. Similar problems popped up here
p <- ggplot(myData, aes(myFeature1,myFeature2))
p <- p + ...