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

Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived

Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme