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;









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.










share|improve this question
































    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.










    share|improve this question




























      0












      0








      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.










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      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

























          1 Answer
          1






          active

          oldest

          votes


















          0
















          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()





          share|improve this answer


























            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
            );



            );














            draft saved

            draft discarded
















            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









            0
















            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()





            share|improve this answer





























              0
















              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()





              share|improve this answer



























                0














                0










                0









                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()





                share|improve this answer













                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()






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 28 at 22:20









                Christofer SkurkaChristofer Skurka

                1




                1































                    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%2f55406811%2fhow-to-manually-change-linetypes-in-ggplot2%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

                    SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

                    용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

                    155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해