How to manually change linetypes in ggplot2Rotating and spacing axis labels in ggplot2How to make a great R reproducible examplecontrol color in horizontal lines in ggplot2Dashed linetype in legend of ggplot in RHow to add manual colors for a ggplot2 (geom_smooth/geom_line)ggplot2 multiple stat_smooth: change color & linetypeR: In ggplot2, how do you combine linetype and color when they're set by different variables?ggplot2: differentiate lines by both color and linetypeLine plot with gray and black dotted linesHow to change linetype conditional on x-axis factor in ggplot when using geom_smooth?
How important is knowledge of trig identities for use in Calculus
Re-entering the UK after overstaying in 2008
What is the point of impeaching Trump?
French license plates
Job interview by video at home and privacy concerns
Could the Queen overturn the UK Supreme Court ruling regarding prorogation of Parliament?
Is the "spacetime" the same thing as the mathematical 4th dimension?
Lighthouse Alternatives
Why do personal finance apps focus on outgoings rather than income
Does the 'java' command compile Java programs?
Can I bring this power bank on board the aircraft?
What action is recommended if your accommodation refuses to let you leave without paying additional fees?
Isn't the detector always measuring, and thus always collapsing the state?
What is the idiomatic solution in SQL Server for reserving a block of ids for use in a bulk insert?
Drawing Maps; flat distortion
How to level a picture frame hung on a single nail?
Why the first octet of a MAC address always end with a binary 0?
Why does it seem the best way to make a living is to invest in real estate?
Why did they use ultrafast diodes in a 50 or 60 Hz bridge?
General method to output dd1,d2,d3...dn in AnyDice
GPLv3 forces us to make code available, but to who?
Notation clarity question for a conglomerate of accidentals
What's the correct way to determine turn order in this situation?
Why is there such a singular place for bird watching?
How to manually change linetypes in ggplot2
Rotating and spacing axis labels in ggplot2How to make a great R reproducible examplecontrol color in horizontal lines in ggplot2Dashed linetype in legend of ggplot in RHow to add manual colors for a ggplot2 (geom_smooth/geom_line)ggplot2 multiple stat_smooth: change color & linetypeR: In ggplot2, how do you combine linetype and color when they're set by different variables?ggplot2: differentiate lines by both color and linetypeLine plot with gray and black dotted linesHow to change linetype conditional on x-axis factor in ggplot when using geom_smooth?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
I'd like to manually change linetypes for a few lines in an interaction plot in ggplot. Essentially, x = continuous y = continuous, moderator = categorical (5 levels).
I have specified the desired linetypes using the scale_linetype_manual argument, but for whatever reason, the linetypes are not changing. I am able to successfully change the line colors but not the linetypes.
ggplot(data=subset(study6, !is.na(condition_control)), aes(x=attitude, y=support, color=condition_control)) +
stat_smooth(method="lm", se = FALSE) +
labs(x ="Initial attitudes", y = "Policy support") +
guides(color=guide_legend(title="Condition")) +
scale_linetype_manual(values=c("solid", "dashed", "solid", "dashed", "solid")) +
scale_color_manual(values=c("red", "gray70", "gray70", "black", "black")) +
theme_bw()
Perhaps the issue has to do with the categorical moderating variable (condition_control)? Any suggestions you have on the matter would be appreciated.
r ggplot2
add a comment
|
I'd like to manually change linetypes for a few lines in an interaction plot in ggplot. Essentially, x = continuous y = continuous, moderator = categorical (5 levels).
I have specified the desired linetypes using the scale_linetype_manual argument, but for whatever reason, the linetypes are not changing. I am able to successfully change the line colors but not the linetypes.
ggplot(data=subset(study6, !is.na(condition_control)), aes(x=attitude, y=support, color=condition_control)) +
stat_smooth(method="lm", se = FALSE) +
labs(x ="Initial attitudes", y = "Policy support") +
guides(color=guide_legend(title="Condition")) +
scale_linetype_manual(values=c("solid", "dashed", "solid", "dashed", "solid")) +
scale_color_manual(values=c("red", "gray70", "gray70", "black", "black")) +
theme_bw()
Perhaps the issue has to do with the categorical moderating variable (condition_control)? Any suggestions you have on the matter would be appreciated.
r ggplot2
add a comment
|
I'd like to manually change linetypes for a few lines in an interaction plot in ggplot. Essentially, x = continuous y = continuous, moderator = categorical (5 levels).
I have specified the desired linetypes using the scale_linetype_manual argument, but for whatever reason, the linetypes are not changing. I am able to successfully change the line colors but not the linetypes.
ggplot(data=subset(study6, !is.na(condition_control)), aes(x=attitude, y=support, color=condition_control)) +
stat_smooth(method="lm", se = FALSE) +
labs(x ="Initial attitudes", y = "Policy support") +
guides(color=guide_legend(title="Condition")) +
scale_linetype_manual(values=c("solid", "dashed", "solid", "dashed", "solid")) +
scale_color_manual(values=c("red", "gray70", "gray70", "black", "black")) +
theme_bw()
Perhaps the issue has to do with the categorical moderating variable (condition_control)? Any suggestions you have on the matter would be appreciated.
r ggplot2
I'd like to manually change linetypes for a few lines in an interaction plot in ggplot. Essentially, x = continuous y = continuous, moderator = categorical (5 levels).
I have specified the desired linetypes using the scale_linetype_manual argument, but for whatever reason, the linetypes are not changing. I am able to successfully change the line colors but not the linetypes.
ggplot(data=subset(study6, !is.na(condition_control)), aes(x=attitude, y=support, color=condition_control)) +
stat_smooth(method="lm", se = FALSE) +
labs(x ="Initial attitudes", y = "Policy support") +
guides(color=guide_legend(title="Condition")) +
scale_linetype_manual(values=c("solid", "dashed", "solid", "dashed", "solid")) +
scale_color_manual(values=c("red", "gray70", "gray70", "black", "black")) +
theme_bw()
Perhaps the issue has to do with the categorical moderating variable (condition_control)? Any suggestions you have on the matter would be appreciated.
r ggplot2
r ggplot2
edited Mar 29 at 1:33
Z.Lin
16.1k3 gold badges24 silver badges46 bronze badges
16.1k3 gold badges24 silver badges46 bronze badges
asked Mar 28 at 21:03
Christofer SkurkaChristofer Skurka
1
1
add a comment
|
add a comment
|
1 Answer
1
active
oldest
votes
For others who may have this issue, I figured it out!
You have to specify your moderator as both a color and a linetype in the aes function. (Note: This will give you two different legends, so you have to make sure each legend is given the same title in order to collapse them into a single legend.)
ggplot(data=subset(study6, !is.na(condition_control)), aes(x=attitude, y=support, color=condition_control, linetype = condition_control)) +
stat_smooth(method="lm", se = FALSE) +
labs(x ="Initial attitudes", y = "Policy support") +
guides(color=guide_legend(title="Condition")) +
scale_linetype_manual("Condition", values=c("solid", "twodash", "solid", "twodash", "solid")) +
scale_color_manual("Condition", values=c("red", "gray70", "gray70", "black", "black")) +
theme_bw()
add a comment
|
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/4.0/"u003ecc by-sa 4.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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55406811%2fhow-to-manually-change-linetypes-in-ggplot2%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
For others who may have this issue, I figured it out!
You have to specify your moderator as both a color and a linetype in the aes function. (Note: This will give you two different legends, so you have to make sure each legend is given the same title in order to collapse them into a single legend.)
ggplot(data=subset(study6, !is.na(condition_control)), aes(x=attitude, y=support, color=condition_control, linetype = condition_control)) +
stat_smooth(method="lm", se = FALSE) +
labs(x ="Initial attitudes", y = "Policy support") +
guides(color=guide_legend(title="Condition")) +
scale_linetype_manual("Condition", values=c("solid", "twodash", "solid", "twodash", "solid")) +
scale_color_manual("Condition", values=c("red", "gray70", "gray70", "black", "black")) +
theme_bw()
add a comment
|
For others who may have this issue, I figured it out!
You have to specify your moderator as both a color and a linetype in the aes function. (Note: This will give you two different legends, so you have to make sure each legend is given the same title in order to collapse them into a single legend.)
ggplot(data=subset(study6, !is.na(condition_control)), aes(x=attitude, y=support, color=condition_control, linetype = condition_control)) +
stat_smooth(method="lm", se = FALSE) +
labs(x ="Initial attitudes", y = "Policy support") +
guides(color=guide_legend(title="Condition")) +
scale_linetype_manual("Condition", values=c("solid", "twodash", "solid", "twodash", "solid")) +
scale_color_manual("Condition", values=c("red", "gray70", "gray70", "black", "black")) +
theme_bw()
add a comment
|
For others who may have this issue, I figured it out!
You have to specify your moderator as both a color and a linetype in the aes function. (Note: This will give you two different legends, so you have to make sure each legend is given the same title in order to collapse them into a single legend.)
ggplot(data=subset(study6, !is.na(condition_control)), aes(x=attitude, y=support, color=condition_control, linetype = condition_control)) +
stat_smooth(method="lm", se = FALSE) +
labs(x ="Initial attitudes", y = "Policy support") +
guides(color=guide_legend(title="Condition")) +
scale_linetype_manual("Condition", values=c("solid", "twodash", "solid", "twodash", "solid")) +
scale_color_manual("Condition", values=c("red", "gray70", "gray70", "black", "black")) +
theme_bw()
For others who may have this issue, I figured it out!
You have to specify your moderator as both a color and a linetype in the aes function. (Note: This will give you two different legends, so you have to make sure each legend is given the same title in order to collapse them into a single legend.)
ggplot(data=subset(study6, !is.na(condition_control)), aes(x=attitude, y=support, color=condition_control, linetype = condition_control)) +
stat_smooth(method="lm", se = FALSE) +
labs(x ="Initial attitudes", y = "Policy support") +
guides(color=guide_legend(title="Condition")) +
scale_linetype_manual("Condition", values=c("solid", "twodash", "solid", "twodash", "solid")) +
scale_color_manual("Condition", values=c("red", "gray70", "gray70", "black", "black")) +
theme_bw()
answered Mar 28 at 22:20
Christofer SkurkaChristofer Skurka
1
1
add a comment
|
add a comment
|
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55406811%2fhow-to-manually-change-linetypes-in-ggplot2%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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