Delete the symbol a from legendRemove 'a' from legend when using aesthetics and geom_textWhy does geom_text() throw coercion errors when hjust and vjust are strings?ggplot2 plot without axes, legends, etcggplot2 legend to bottom and horizontalggplot2 avoid boxes around legend symbolsTurning off some legends in a ggplotHow to change legend title in ggplotremove legend title in ggplotggplot2: Adjust the symbol size in legendsRemove legend ggplot 2.2Subscript a title in a Graph (ggplot2) with label of another file

Intersection Puzzle

Are there any examples of a variable being normally distributed that is *not* due to the Central Limit Theorem?

Size of subfigure fitting its content (tikzpicture)

What reasons are there for a Capitalist to oppose a 100% inheritance tax?

A category-like structure without composition?

Ambiguity in the definition of entropy

Why are the 737's rear doors unusable in a water landing?

How can I prevent hyper evolved versions of regular creatures from wiping out their cousins?

Should I tell management that I intend to leave due to bad software development practices?

What exploit are these user agents trying to use?

How seriously should I take size and weight limits of hand luggage?

How can I deal with my CEO asking me to hire someone with a higher salary than me, a co-founder?

How does a predictive coding aid in lossless compression?

Can my sorcerer use a spellbook only to collect spells and scribe scrolls, not cast?

Is there an expression that means doing something right before you will need it rather than doing it in case you might need it?

Why doesn't using multiple commands with a || or && conditional work?

What do you call someone who asks many questions?

What mechanic is there to disable a threat instead of killing it?

What killed these X2 caps?

Is "remove commented out code" correct English?

What's the in-universe reasoning behind sorcerers needing material components?

Short story with a alien planet, government officials must wear exploding medallions

How dangerous is XSS?

Alternative to sending password over mail?



Delete the symbol a from legend


Remove 'a' from legend when using aesthetics and geom_textWhy does geom_text() throw coercion errors when hjust and vjust are strings?ggplot2 plot without axes, legends, etcggplot2 legend to bottom and horizontalggplot2 avoid boxes around legend symbolsTurning off some legends in a ggplotHow to change legend title in ggplotremove legend title in ggplotggplot2: Adjust the symbol size in legendsRemove legend ggplot 2.2Subscript a title in a Graph (ggplot2) with label of another file













0















I need to delete that symbol 'a' that is coming in the legend, plus I would like to know if there is a possibility to place the label on the top of the bars.
enter image description here



This my example file:



Residue,Position,Weight,SVM Count,Odd,Ttest,lower,upper,Resistance
G163R,163,0.357,49,19.9453848,6.978518E-82,5.6628402,70.2925768,Accessory
V165I,165,0.268,49,2.98167788,1.60934E-80,1.25797484,7.06728692,Novel
N155H,155,0.253,50,38.6089584,1.089188E-83,9.5815554,155.7070612,Major


library(ggplot2)
m <- read.csv('example.csv', header=T, row.names=1)
boxOdds = m$Odd

df <- data.frame(
yAxis = length(boxOdds):1,
boxnucleotide = m$Position,
boxCILow = m$lower,
boxCIHigh = m$upper,
Mutation = m$Resistance)
ticksy<-c(seq(0,0.3,by=.1), seq(0, 1, by =.5), seq(0, 20, by =5), seq(0, 150, by =50))
ticksx<-c(seq(0,300,by=25))
p <- ggplot(df, aes(x = boxnucleotide, y = boxOdds, colour=Mutation,label=rownames(m)))
p1 <- p + geom_errorbar(aes(ymax = boxCIHigh, ymin = boxCILow), size = .5, height = .01) +
geom_point(size = 1) +
theme_bw() +
theme(panel.grid.minor = element_blank()) +
scale_y_continuous(breaks=ticksy, labels = ticksy) +
scale_x_continuous(breaks=ticksx, labels = ticksx) +
coord_trans(y = "log10") +
ylab("Odds ratio (log scale)") +
scale_color_manual(values=c("#00BFC4","#F8766D","#619CFF")) +
xlab("Integrase nucleotide position") +
geom_text(size=4,hjust=0, vjust=0)+
theme(legend.position = c(0.9, 0.9))
p1


I already tried all possible solutions from Remove 'a' from legend when using aesthetics and geom_text but none worked out










share|improve this question



















  • 1





    re Q1 : stackoverflow.com/questions/18337653/… , and to place the label, try and add aes(y=boxCIHigh) to the geom_text (untested)

    – user20650
    Mar 8 at 22:47







  • 3





    Possible duplicate of Remove 'a' from legend when using aesthetics and geom_text

    – camille
    Mar 8 at 23:03











  • I tried those solutions proposed in stackoverflow.com/questions/18337653/… but they did not work

    – Mariano Avino
    Mar 9 at 23:54






  • 1





    @MarianoAvino What happens when you replace your geom_text(...) line with geom_text(aes(y = boxCIHigh), show.legend = FALSE)?

    – Z.Lin
    Mar 10 at 4:44















0















I need to delete that symbol 'a' that is coming in the legend, plus I would like to know if there is a possibility to place the label on the top of the bars.
enter image description here



This my example file:



Residue,Position,Weight,SVM Count,Odd,Ttest,lower,upper,Resistance
G163R,163,0.357,49,19.9453848,6.978518E-82,5.6628402,70.2925768,Accessory
V165I,165,0.268,49,2.98167788,1.60934E-80,1.25797484,7.06728692,Novel
N155H,155,0.253,50,38.6089584,1.089188E-83,9.5815554,155.7070612,Major


library(ggplot2)
m <- read.csv('example.csv', header=T, row.names=1)
boxOdds = m$Odd

df <- data.frame(
yAxis = length(boxOdds):1,
boxnucleotide = m$Position,
boxCILow = m$lower,
boxCIHigh = m$upper,
Mutation = m$Resistance)
ticksy<-c(seq(0,0.3,by=.1), seq(0, 1, by =.5), seq(0, 20, by =5), seq(0, 150, by =50))
ticksx<-c(seq(0,300,by=25))
p <- ggplot(df, aes(x = boxnucleotide, y = boxOdds, colour=Mutation,label=rownames(m)))
p1 <- p + geom_errorbar(aes(ymax = boxCIHigh, ymin = boxCILow), size = .5, height = .01) +
geom_point(size = 1) +
theme_bw() +
theme(panel.grid.minor = element_blank()) +
scale_y_continuous(breaks=ticksy, labels = ticksy) +
scale_x_continuous(breaks=ticksx, labels = ticksx) +
coord_trans(y = "log10") +
ylab("Odds ratio (log scale)") +
scale_color_manual(values=c("#00BFC4","#F8766D","#619CFF")) +
xlab("Integrase nucleotide position") +
geom_text(size=4,hjust=0, vjust=0)+
theme(legend.position = c(0.9, 0.9))
p1


I already tried all possible solutions from Remove 'a' from legend when using aesthetics and geom_text but none worked out










share|improve this question



















  • 1





    re Q1 : stackoverflow.com/questions/18337653/… , and to place the label, try and add aes(y=boxCIHigh) to the geom_text (untested)

    – user20650
    Mar 8 at 22:47







  • 3





    Possible duplicate of Remove 'a' from legend when using aesthetics and geom_text

    – camille
    Mar 8 at 23:03











  • I tried those solutions proposed in stackoverflow.com/questions/18337653/… but they did not work

    – Mariano Avino
    Mar 9 at 23:54






  • 1





    @MarianoAvino What happens when you replace your geom_text(...) line with geom_text(aes(y = boxCIHigh), show.legend = FALSE)?

    – Z.Lin
    Mar 10 at 4:44













0












0








0


0






I need to delete that symbol 'a' that is coming in the legend, plus I would like to know if there is a possibility to place the label on the top of the bars.
enter image description here



This my example file:



Residue,Position,Weight,SVM Count,Odd,Ttest,lower,upper,Resistance
G163R,163,0.357,49,19.9453848,6.978518E-82,5.6628402,70.2925768,Accessory
V165I,165,0.268,49,2.98167788,1.60934E-80,1.25797484,7.06728692,Novel
N155H,155,0.253,50,38.6089584,1.089188E-83,9.5815554,155.7070612,Major


library(ggplot2)
m <- read.csv('example.csv', header=T, row.names=1)
boxOdds = m$Odd

df <- data.frame(
yAxis = length(boxOdds):1,
boxnucleotide = m$Position,
boxCILow = m$lower,
boxCIHigh = m$upper,
Mutation = m$Resistance)
ticksy<-c(seq(0,0.3,by=.1), seq(0, 1, by =.5), seq(0, 20, by =5), seq(0, 150, by =50))
ticksx<-c(seq(0,300,by=25))
p <- ggplot(df, aes(x = boxnucleotide, y = boxOdds, colour=Mutation,label=rownames(m)))
p1 <- p + geom_errorbar(aes(ymax = boxCIHigh, ymin = boxCILow), size = .5, height = .01) +
geom_point(size = 1) +
theme_bw() +
theme(panel.grid.minor = element_blank()) +
scale_y_continuous(breaks=ticksy, labels = ticksy) +
scale_x_continuous(breaks=ticksx, labels = ticksx) +
coord_trans(y = "log10") +
ylab("Odds ratio (log scale)") +
scale_color_manual(values=c("#00BFC4","#F8766D","#619CFF")) +
xlab("Integrase nucleotide position") +
geom_text(size=4,hjust=0, vjust=0)+
theme(legend.position = c(0.9, 0.9))
p1


I already tried all possible solutions from Remove 'a' from legend when using aesthetics and geom_text but none worked out










share|improve this question
















I need to delete that symbol 'a' that is coming in the legend, plus I would like to know if there is a possibility to place the label on the top of the bars.
enter image description here



This my example file:



Residue,Position,Weight,SVM Count,Odd,Ttest,lower,upper,Resistance
G163R,163,0.357,49,19.9453848,6.978518E-82,5.6628402,70.2925768,Accessory
V165I,165,0.268,49,2.98167788,1.60934E-80,1.25797484,7.06728692,Novel
N155H,155,0.253,50,38.6089584,1.089188E-83,9.5815554,155.7070612,Major


library(ggplot2)
m <- read.csv('example.csv', header=T, row.names=1)
boxOdds = m$Odd

df <- data.frame(
yAxis = length(boxOdds):1,
boxnucleotide = m$Position,
boxCILow = m$lower,
boxCIHigh = m$upper,
Mutation = m$Resistance)
ticksy<-c(seq(0,0.3,by=.1), seq(0, 1, by =.5), seq(0, 20, by =5), seq(0, 150, by =50))
ticksx<-c(seq(0,300,by=25))
p <- ggplot(df, aes(x = boxnucleotide, y = boxOdds, colour=Mutation,label=rownames(m)))
p1 <- p + geom_errorbar(aes(ymax = boxCIHigh, ymin = boxCILow), size = .5, height = .01) +
geom_point(size = 1) +
theme_bw() +
theme(panel.grid.minor = element_blank()) +
scale_y_continuous(breaks=ticksy, labels = ticksy) +
scale_x_continuous(breaks=ticksx, labels = ticksx) +
coord_trans(y = "log10") +
ylab("Odds ratio (log scale)") +
scale_color_manual(values=c("#00BFC4","#F8766D","#619CFF")) +
xlab("Integrase nucleotide position") +
geom_text(size=4,hjust=0, vjust=0)+
theme(legend.position = c(0.9, 0.9))
p1


I already tried all possible solutions from Remove 'a' from legend when using aesthetics and geom_text but none worked out







r ggplot2






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 9 at 23:52







Mariano Avino

















asked Mar 8 at 22:45









Mariano AvinoMariano Avino

375




375







  • 1





    re Q1 : stackoverflow.com/questions/18337653/… , and to place the label, try and add aes(y=boxCIHigh) to the geom_text (untested)

    – user20650
    Mar 8 at 22:47







  • 3





    Possible duplicate of Remove 'a' from legend when using aesthetics and geom_text

    – camille
    Mar 8 at 23:03











  • I tried those solutions proposed in stackoverflow.com/questions/18337653/… but they did not work

    – Mariano Avino
    Mar 9 at 23:54






  • 1





    @MarianoAvino What happens when you replace your geom_text(...) line with geom_text(aes(y = boxCIHigh), show.legend = FALSE)?

    – Z.Lin
    Mar 10 at 4:44












  • 1





    re Q1 : stackoverflow.com/questions/18337653/… , and to place the label, try and add aes(y=boxCIHigh) to the geom_text (untested)

    – user20650
    Mar 8 at 22:47







  • 3





    Possible duplicate of Remove 'a' from legend when using aesthetics and geom_text

    – camille
    Mar 8 at 23:03











  • I tried those solutions proposed in stackoverflow.com/questions/18337653/… but they did not work

    – Mariano Avino
    Mar 9 at 23:54






  • 1





    @MarianoAvino What happens when you replace your geom_text(...) line with geom_text(aes(y = boxCIHigh), show.legend = FALSE)?

    – Z.Lin
    Mar 10 at 4:44







1




1





re Q1 : stackoverflow.com/questions/18337653/… , and to place the label, try and add aes(y=boxCIHigh) to the geom_text (untested)

– user20650
Mar 8 at 22:47






re Q1 : stackoverflow.com/questions/18337653/… , and to place the label, try and add aes(y=boxCIHigh) to the geom_text (untested)

– user20650
Mar 8 at 22:47





3




3





Possible duplicate of Remove 'a' from legend when using aesthetics and geom_text

– camille
Mar 8 at 23:03





Possible duplicate of Remove 'a' from legend when using aesthetics and geom_text

– camille
Mar 8 at 23:03













I tried those solutions proposed in stackoverflow.com/questions/18337653/… but they did not work

– Mariano Avino
Mar 9 at 23:54





I tried those solutions proposed in stackoverflow.com/questions/18337653/… but they did not work

– Mariano Avino
Mar 9 at 23:54




1




1





@MarianoAvino What happens when you replace your geom_text(...) line with geom_text(aes(y = boxCIHigh), show.legend = FALSE)?

– Z.Lin
Mar 10 at 4:44





@MarianoAvino What happens when you replace your geom_text(...) line with geom_text(aes(y = boxCIHigh), show.legend = FALSE)?

– Z.Lin
Mar 10 at 4:44












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55072030%2fdelete-the-symbol-a-from-legend%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55072030%2fdelete-the-symbol-a-from-legend%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Thal And Out Agency railway station See also References External links Navigation menuOfficial Web Site of Pakistan RailwaysArchivedOfficial Web Site of Pakistan Railwayseeexpanding ite

Understanding generators in Python2019 Community Moderator ElectionGenerator function not working pythonFor loop not executing two timesGenerators - Printing generated valuesWhy can a python generator only be used once?What exactly do generators do?What does the “yield” keyword do?What does “list comprehension” mean? How does it work and how can I use it?sklearn Kfold acces single fold instead of for loopIs a generator the callable? Which is the generator?Apply Border To Range Of Cells Using OpenpyxlCalling an external command in PythonWhat are metaclasses in Python?What is the difference between @staticmethod and @classmethod?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow can I safely create a nested directory in Python?Does Python have a ternary conditional operator?Understanding slice notationUnderstanding Python super() with __init__() methodsDoes Python have a string 'contains' substring method?

How can I change the color of pagination dots of UIPageControl?How to change UIPageControl dotsIs there a way to change page indicator dots colorCustomize dot with image of UIPageControl at index 0 of UIPageControlNo visible @interface for 'NSObject<PageControlDelegate>' declares the selector 'pageControlPageDidChange:'How to change the color of pagination dots in UIPageControl with a different color per pagepagecontrol indicator custom image instead of DefaultChanging the colour of UIPageControl dots in MonoTouchpagecontrol selectable page visibility color?Alternative way to load ViewControllers on a UIPageControlHow to set only layer.border-color for UIpage control dots in swiftHow can I develop for iPhone using a Windows development machine?How to change the name of an iOS app?UITableView - change section header coloruipagecontrol indicator(dot)issueCustom UIPageControl dots color not changingchange the interspace between UIPageControl dotsHow to change Status Bar text color in iOSHow can I change image tintColor in iOS and WatchKitUIPageControl dots with larger space in between each dotsHow to change the color of pagination dots in UIPageControl with a different color per page