How to get a 2D Plot from a 3D Listplot?Efficient Data Entry / Manipulation with Many DatasetsVisual...

"I showed the monkey himself in the mirror". Why is this sentence grammatical?

Tikz: Perpendicular FROM a line

Was there a pre-determined arrangement for the division of Germany in case it surrendered before any Soviet forces entered its territory?

Why write a book when there's a movie in my head?

Protagonist constantly has to have long words explained to her. Will this get tedious?

Does Plato's "Ring of Gyges" have a corrupting influence on its wearer?

Identical projects by students at two different colleges: still plagiarism?

Taking an academic pseudonym?

Sticky Strike or Sticky Delta

How to know if I am a 'Real Developer'

Problems formatting part entries in ToC with `titletoc`

Are all power cords made equal?

Is Screenshot Time-tracking Common?

Including proofs of known theorems in master's thesis

Calculating the strength of an ionic bond that contains poly-atomic ions

If I tried and failed to start my own business, how do I apply for a job without job experience?

Is there a way to pause a running process on Linux systems and resume later?

Why don't you get burned by the wood benches in a sauna?

Solving the linear first order differential equaition?

How do I avoid the "chosen hero" feeling?

Is "accuse people to be racist" grammatical?

How can I put a period right after the algorithm's number in the algorithm's title?

How can I give a Ranger advantage on a check due to Favored Enemy without spoiling the story for the player?

Did ancient Germans take pride in leaving the land untouched?



How to get a 2D Plot from a 3D Listplot?


Efficient Data Entry / Manipulation with Many DatasetsVisual representation of a Ranking over time (image provided)How to plot a 3D surface from an Excel matrix, using column and row headers as axis labelsCreating a custom color plot with tones of colorsHow can I get the interpolation line from Listplot?Plotting data imported from CSV fileInserting columns into a large table of data and converting it into a {x,y,z} listHow to plot imaginary parts of complex valued list of data separately?Labeling a list plot came from excel data setHow to plot 3D discontinuous iterative plot?













1












$begingroup$


I have the following ListPlot3D , where C is specific Heat , T temperature and n concentration, my list first column present n, second T and third column is for C.
I have this code to plot 3D graph from file name "data"



data = PadLeft[Import["E:\new_n\T(n).dat", "Table"]];
d = ListPlot3D[data, PlotRange -> Full, AxesLabel -> {n, T, C},
PlotStyle -> Green]


List in the link



Is it possible to get 2D graph from 3d listPlot? Could you please help me?



Any suggestions are very appreciated.










share|improve this question











$endgroup$












  • $begingroup$
    How do you want to get the 2D plot? Along which axis? What view point? Can you just project onto the XY plane? Onto the XZ plane? We'll need more info to help you
    $endgroup$
    – b3m2a1
    3 hours ago










  • $begingroup$
    @b3m2a1 i want to plot T(c) plane xy
    $endgroup$
    – Тахер Бен
    3 hours ago


















1












$begingroup$


I have the following ListPlot3D , where C is specific Heat , T temperature and n concentration, my list first column present n, second T and third column is for C.
I have this code to plot 3D graph from file name "data"



data = PadLeft[Import["E:\new_n\T(n).dat", "Table"]];
d = ListPlot3D[data, PlotRange -> Full, AxesLabel -> {n, T, C},
PlotStyle -> Green]


List in the link



Is it possible to get 2D graph from 3d listPlot? Could you please help me?



Any suggestions are very appreciated.










share|improve this question











$endgroup$












  • $begingroup$
    How do you want to get the 2D plot? Along which axis? What view point? Can you just project onto the XY plane? Onto the XZ plane? We'll need more info to help you
    $endgroup$
    – b3m2a1
    3 hours ago










  • $begingroup$
    @b3m2a1 i want to plot T(c) plane xy
    $endgroup$
    – Тахер Бен
    3 hours ago
















1












1








1





$begingroup$


I have the following ListPlot3D , where C is specific Heat , T temperature and n concentration, my list first column present n, second T and third column is for C.
I have this code to plot 3D graph from file name "data"



data = PadLeft[Import["E:\new_n\T(n).dat", "Table"]];
d = ListPlot3D[data, PlotRange -> Full, AxesLabel -> {n, T, C},
PlotStyle -> Green]


List in the link



Is it possible to get 2D graph from 3d listPlot? Could you please help me?



Any suggestions are very appreciated.










share|improve this question











$endgroup$




I have the following ListPlot3D , where C is specific Heat , T temperature and n concentration, my list first column present n, second T and third column is for C.
I have this code to plot 3D graph from file name "data"



data = PadLeft[Import["E:\new_n\T(n).dat", "Table"]];
d = ListPlot3D[data, PlotRange -> Full, AxesLabel -> {n, T, C},
PlotStyle -> Green]


List in the link



Is it possible to get 2D graph from 3d listPlot? Could you please help me?



Any suggestions are very appreciated.







plotting






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 4 hours ago









kglr

185k10202421




185k10202421










asked 4 hours ago









Тахер БенТахер Бен

353




353












  • $begingroup$
    How do you want to get the 2D plot? Along which axis? What view point? Can you just project onto the XY plane? Onto the XZ plane? We'll need more info to help you
    $endgroup$
    – b3m2a1
    3 hours ago










  • $begingroup$
    @b3m2a1 i want to plot T(c) plane xy
    $endgroup$
    – Тахер Бен
    3 hours ago




















  • $begingroup$
    How do you want to get the 2D plot? Along which axis? What view point? Can you just project onto the XY plane? Onto the XZ plane? We'll need more info to help you
    $endgroup$
    – b3m2a1
    3 hours ago










  • $begingroup$
    @b3m2a1 i want to plot T(c) plane xy
    $endgroup$
    – Тахер Бен
    3 hours ago


















$begingroup$
How do you want to get the 2D plot? Along which axis? What view point? Can you just project onto the XY plane? Onto the XZ plane? We'll need more info to help you
$endgroup$
– b3m2a1
3 hours ago




$begingroup$
How do you want to get the 2D plot? Along which axis? What view point? Can you just project onto the XY plane? Onto the XZ plane? We'll need more info to help you
$endgroup$
– b3m2a1
3 hours ago












$begingroup$
@b3m2a1 i want to plot T(c) plane xy
$endgroup$
– Тахер Бен
3 hours ago






$begingroup$
@b3m2a1 i want to plot T(c) plane xy
$endgroup$
– Тахер Бен
3 hours ago












2 Answers
2






active

oldest

votes


















2












$begingroup$

You may use ListContourPlot. Also, you may want to have a look at the ColorFunction option of these functions.



With data as in OP. Then



ListContourPlot[data,
PlotRange -> Full,
FrameLabel -> {n, T},
PlotLegends -> Automatic,
ColorFunction -> ColorData[{"StarryNightColors", "Reverse"}]
]



Mathematica graphics




Hope this helps.






share|improve this answer









$endgroup$





















    1












    $begingroup$

    data = PadLeft[Import["E:\new_n\T(n).dat", "Table"]];
    T = data[[All, 2]]; c = data[[All, 3]];
    ListPlot[Table[{c[[i]], T[[i]]}, {i, 1, Length[c]}],
    AxesLabel -> {"c", "T"}, PlotRange -> All]


    fig1






    share|improve this answer









    $endgroup$













      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',
      autoActivateHeartbeat: false,
      convertImagesToLinks: false,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: null,
      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%2fmathematica.stackexchange.com%2fquestions%2f192108%2fhow-to-get-a-2d-plot-from-a-3d-listplot%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      2












      $begingroup$

      You may use ListContourPlot. Also, you may want to have a look at the ColorFunction option of these functions.



      With data as in OP. Then



      ListContourPlot[data,
      PlotRange -> Full,
      FrameLabel -> {n, T},
      PlotLegends -> Automatic,
      ColorFunction -> ColorData[{"StarryNightColors", "Reverse"}]
      ]



      Mathematica graphics




      Hope this helps.






      share|improve this answer









      $endgroup$


















        2












        $begingroup$

        You may use ListContourPlot. Also, you may want to have a look at the ColorFunction option of these functions.



        With data as in OP. Then



        ListContourPlot[data,
        PlotRange -> Full,
        FrameLabel -> {n, T},
        PlotLegends -> Automatic,
        ColorFunction -> ColorData[{"StarryNightColors", "Reverse"}]
        ]



        Mathematica graphics




        Hope this helps.






        share|improve this answer









        $endgroup$
















          2












          2








          2





          $begingroup$

          You may use ListContourPlot. Also, you may want to have a look at the ColorFunction option of these functions.



          With data as in OP. Then



          ListContourPlot[data,
          PlotRange -> Full,
          FrameLabel -> {n, T},
          PlotLegends -> Automatic,
          ColorFunction -> ColorData[{"StarryNightColors", "Reverse"}]
          ]



          Mathematica graphics




          Hope this helps.






          share|improve this answer









          $endgroup$



          You may use ListContourPlot. Also, you may want to have a look at the ColorFunction option of these functions.



          With data as in OP. Then



          ListContourPlot[data,
          PlotRange -> Full,
          FrameLabel -> {n, T},
          PlotLegends -> Automatic,
          ColorFunction -> ColorData[{"StarryNightColors", "Reverse"}]
          ]



          Mathematica graphics




          Hope this helps.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 3 hours ago









          EdmundEdmund

          26.5k330102




          26.5k330102























              1












              $begingroup$

              data = PadLeft[Import["E:\new_n\T(n).dat", "Table"]];
              T = data[[All, 2]]; c = data[[All, 3]];
              ListPlot[Table[{c[[i]], T[[i]]}, {i, 1, Length[c]}],
              AxesLabel -> {"c", "T"}, PlotRange -> All]


              fig1






              share|improve this answer









              $endgroup$


















                1












                $begingroup$

                data = PadLeft[Import["E:\new_n\T(n).dat", "Table"]];
                T = data[[All, 2]]; c = data[[All, 3]];
                ListPlot[Table[{c[[i]], T[[i]]}, {i, 1, Length[c]}],
                AxesLabel -> {"c", "T"}, PlotRange -> All]


                fig1






                share|improve this answer









                $endgroup$
















                  1












                  1








                  1





                  $begingroup$

                  data = PadLeft[Import["E:\new_n\T(n).dat", "Table"]];
                  T = data[[All, 2]]; c = data[[All, 3]];
                  ListPlot[Table[{c[[i]], T[[i]]}, {i, 1, Length[c]}],
                  AxesLabel -> {"c", "T"}, PlotRange -> All]


                  fig1






                  share|improve this answer









                  $endgroup$



                  data = PadLeft[Import["E:\new_n\T(n).dat", "Table"]];
                  T = data[[All, 2]]; c = data[[All, 3]];
                  ListPlot[Table[{c[[i]], T[[i]]}, {i, 1, Length[c]}],
                  AxesLabel -> {"c", "T"}, PlotRange -> All]


                  fig1







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered 2 hours ago









                  Alex TrounevAlex Trounev

                  7,5181421




                  7,5181421






























                      draft saved

                      draft discarded




















































                      Thanks for contributing an answer to Mathematica Stack Exchange!


                      • 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.


                      Use MathJax to format equations. MathJax reference.


                      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%2fmathematica.stackexchange.com%2fquestions%2f192108%2fhow-to-get-a-2d-plot-from-a-3d-listplot%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

                      Szabolcs (Ungheria) Altri progetti | Menu di navigazione48°10′14.56″N 21°29′33.14″E /...

                      Discografia di Klaus Schulze Indice Album in studio | Album dal vivo | Singoli | Antologie | Colonne...

                      How to make inet_server_addr() return localhost in spite of ::1/128RETURN NEXT in Postgres FunctionConnect to...