data manipulation

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
3
down vote

favorite












I have to plot the data below:



x,y,z=0.1,0.013070604,1.00015,0.6,0.078698955,1.0054247,1.1,0.14552025,1.0184426,1.6,0.21458577,1.0398293,2.1,0.28706229,1.0712175,2.6,0.3643249,1.1155575


I am new in data manipulation. Please how to plot column x vs column z and z vs y.










share|improve this question

























    up vote
    3
    down vote

    favorite












    I have to plot the data below:



    x,y,z=0.1,0.013070604,1.00015,0.6,0.078698955,1.0054247,1.1,0.14552025,1.0184426,1.6,0.21458577,1.0398293,2.1,0.28706229,1.0712175,2.6,0.3643249,1.1155575


    I am new in data manipulation. Please how to plot column x vs column z and z vs y.










    share|improve this question























      up vote
      3
      down vote

      favorite









      up vote
      3
      down vote

      favorite











      I have to plot the data below:



      x,y,z=0.1,0.013070604,1.00015,0.6,0.078698955,1.0054247,1.1,0.14552025,1.0184426,1.6,0.21458577,1.0398293,2.1,0.28706229,1.0712175,2.6,0.3643249,1.1155575


      I am new in data manipulation. Please how to plot column x vs column z and z vs y.










      share|improve this question













      I have to plot the data below:



      x,y,z=0.1,0.013070604,1.00015,0.6,0.078698955,1.0054247,1.1,0.14552025,1.0184426,1.6,0.21458577,1.0398293,2.1,0.28706229,1.0712175,2.6,0.3643249,1.1155575


      I am new in data manipulation. Please how to plot column x vs column z and z vs y.







      plotting data






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 1 hour ago









      Gallagher

      565




      565




















          3 Answers
          3






          active

          oldest

          votes

















          up vote
          5
          down vote













          How about this



          data = Flatten /@ 0.1, 0.013070604, 1.00015, 0.6, 0.078698955, 
          1.0054247, 1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,
          1.0398293, 2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,
          1.1155575;

          ListPlot[data[[All, 3, 1]], data[[All, 2 ;;]]]



          enter image description here







          share|improve this answer




















          • yes that's it, thank you @Αλέξανδρος Ζεγγ.
            – Gallagher
            1 hour ago

















          up vote
          5
          down vote













          This is also a good place to apply patterns to re-arrange the elements of the data.



          list = 0.1, 0.013070604, 1.00015, 0.6, 0.078698955,1.0054247, 
          1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,1.0398293,
          2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,1.1155575;

          ListPlot[list /. x_, y_, z_ -> x, z, list /. x_, y_, z_ -> z, y]





          share|improve this answer




















          • yes that's it, thank you @bill s.
            – Gallagher
            1 hour ago

















          up vote
          0
          down vote













          Here is another way:



          a = 
          0.1, 0.013070604, 1.00015, 0.6, 0.078698955,
          1.0054247, 1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,
          1.0398293, 2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,
          1.1155575
          ;
          x, y, z = MapAt[Transpose, Transpose[a], 2];
          ListPlot[Transpose[x, z], Transpose[z, y]]


          enter image description here






          share|improve this answer




















            Your Answer




            StackExchange.ifUsing("editor", function ()
            return StackExchange.using("mathjaxEditing", function ()
            StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
            StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
            );
            );
            , "mathjax-editing");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "387"
            ;
            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',
            convertImagesToLinks: false,
            noModals: false,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













             

            draft saved


            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f182046%2fdata-manipulation%23new-answer', 'question_page');

            );

            Post as a guest






























            3 Answers
            3






            active

            oldest

            votes








            3 Answers
            3






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            5
            down vote













            How about this



            data = Flatten /@ 0.1, 0.013070604, 1.00015, 0.6, 0.078698955, 
            1.0054247, 1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,
            1.0398293, 2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,
            1.1155575;

            ListPlot[data[[All, 3, 1]], data[[All, 2 ;;]]]



            enter image description here







            share|improve this answer




















            • yes that's it, thank you @Αλέξανδρος Ζεγγ.
              – Gallagher
              1 hour ago














            up vote
            5
            down vote













            How about this



            data = Flatten /@ 0.1, 0.013070604, 1.00015, 0.6, 0.078698955, 
            1.0054247, 1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,
            1.0398293, 2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,
            1.1155575;

            ListPlot[data[[All, 3, 1]], data[[All, 2 ;;]]]



            enter image description here







            share|improve this answer




















            • yes that's it, thank you @Αλέξανδρος Ζεγγ.
              – Gallagher
              1 hour ago












            up vote
            5
            down vote










            up vote
            5
            down vote









            How about this



            data = Flatten /@ 0.1, 0.013070604, 1.00015, 0.6, 0.078698955, 
            1.0054247, 1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,
            1.0398293, 2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,
            1.1155575;

            ListPlot[data[[All, 3, 1]], data[[All, 2 ;;]]]



            enter image description here







            share|improve this answer












            How about this



            data = Flatten /@ 0.1, 0.013070604, 1.00015, 0.6, 0.078698955, 
            1.0054247, 1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,
            1.0398293, 2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,
            1.1155575;

            ListPlot[data[[All, 3, 1]], data[[All, 2 ;;]]]



            enter image description here








            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered 1 hour ago









            Αλέξανδρος Ζεγγ

            1,803720




            1,803720











            • yes that's it, thank you @Αλέξανδρος Ζεγγ.
              – Gallagher
              1 hour ago
















            • yes that's it, thank you @Αλέξανδρος Ζεγγ.
              – Gallagher
              1 hour ago















            yes that's it, thank you @Αλέξανδρος Ζεγγ.
            – Gallagher
            1 hour ago




            yes that's it, thank you @Αλέξανδρος Ζεγγ.
            – Gallagher
            1 hour ago










            up vote
            5
            down vote













            This is also a good place to apply patterns to re-arrange the elements of the data.



            list = 0.1, 0.013070604, 1.00015, 0.6, 0.078698955,1.0054247, 
            1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,1.0398293,
            2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,1.1155575;

            ListPlot[list /. x_, y_, z_ -> x, z, list /. x_, y_, z_ -> z, y]





            share|improve this answer




















            • yes that's it, thank you @bill s.
              – Gallagher
              1 hour ago














            up vote
            5
            down vote













            This is also a good place to apply patterns to re-arrange the elements of the data.



            list = 0.1, 0.013070604, 1.00015, 0.6, 0.078698955,1.0054247, 
            1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,1.0398293,
            2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,1.1155575;

            ListPlot[list /. x_, y_, z_ -> x, z, list /. x_, y_, z_ -> z, y]





            share|improve this answer




















            • yes that's it, thank you @bill s.
              – Gallagher
              1 hour ago












            up vote
            5
            down vote










            up vote
            5
            down vote









            This is also a good place to apply patterns to re-arrange the elements of the data.



            list = 0.1, 0.013070604, 1.00015, 0.6, 0.078698955,1.0054247, 
            1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,1.0398293,
            2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,1.1155575;

            ListPlot[list /. x_, y_, z_ -> x, z, list /. x_, y_, z_ -> z, y]





            share|improve this answer












            This is also a good place to apply patterns to re-arrange the elements of the data.



            list = 0.1, 0.013070604, 1.00015, 0.6, 0.078698955,1.0054247, 
            1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,1.0398293,
            2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,1.1155575;

            ListPlot[list /. x_, y_, z_ -> x, z, list /. x_, y_, z_ -> z, y]






            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered 1 hour ago









            bill s

            50.9k373144




            50.9k373144











            • yes that's it, thank you @bill s.
              – Gallagher
              1 hour ago
















            • yes that's it, thank you @bill s.
              – Gallagher
              1 hour ago















            yes that's it, thank you @bill s.
            – Gallagher
            1 hour ago




            yes that's it, thank you @bill s.
            – Gallagher
            1 hour ago










            up vote
            0
            down vote













            Here is another way:



            a = 
            0.1, 0.013070604, 1.00015, 0.6, 0.078698955,
            1.0054247, 1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,
            1.0398293, 2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,
            1.1155575
            ;
            x, y, z = MapAt[Transpose, Transpose[a], 2];
            ListPlot[Transpose[x, z], Transpose[z, y]]


            enter image description here






            share|improve this answer
























              up vote
              0
              down vote













              Here is another way:



              a = 
              0.1, 0.013070604, 1.00015, 0.6, 0.078698955,
              1.0054247, 1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,
              1.0398293, 2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,
              1.1155575
              ;
              x, y, z = MapAt[Transpose, Transpose[a], 2];
              ListPlot[Transpose[x, z], Transpose[z, y]]


              enter image description here






              share|improve this answer






















                up vote
                0
                down vote










                up vote
                0
                down vote









                Here is another way:



                a = 
                0.1, 0.013070604, 1.00015, 0.6, 0.078698955,
                1.0054247, 1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,
                1.0398293, 2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,
                1.1155575
                ;
                x, y, z = MapAt[Transpose, Transpose[a], 2];
                ListPlot[Transpose[x, z], Transpose[z, y]]


                enter image description here






                share|improve this answer












                Here is another way:



                a = 
                0.1, 0.013070604, 1.00015, 0.6, 0.078698955,
                1.0054247, 1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,
                1.0398293, 2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,
                1.1155575
                ;
                x, y, z = MapAt[Transpose, Transpose[a], 2];
                ListPlot[Transpose[x, z], Transpose[z, y]]


                enter image description here







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 23 mins ago









                Henrik Schumacher

                38.4k251111




                38.4k251111



























                     

                    draft saved


                    draft discarded















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f182046%2fdata-manipulation%23new-answer', 'question_page');

                    );

                    Post as a guest













































































                    Comments

                    Popular posts from this blog

                    What does second last employer means? [closed]

                    List of Gilmore Girls characters

                    Confectionery