How to partition a pgfplotstable to use in multiple tikzpictures? (and duplicate a row)Pgfplotstable without...

Can fracking help reduce CO2?

How to assert on pagereference where the endpoint of pagereference is predefined

What was the state of the German rail system in 1944?

How to compensate for height when using a ranged attack

How to creep the reader out with what seems like a normal person?

Does hiding behind 5-ft-wide cover give full cover?

Can I use 1000v rectifier diodes instead of 600v rectifier diodes?

Hang 20lb projector screen on hardieplank

How to efficiently calculate prefix sum of frequencies of characters in a string?

What word means "to make something obsolete"?

Public Salesforce Site and Security Review

CRT Oscilloscope - part of the plot is missing

Surprising behavior of Part[ ]

Geometry - Proving a common centroid.

Map one pandas column using two dictionaries

Is this homebrew race based on the Draco Volans lizard species balanced?

Feels like I am getting dragged into office politics

Why was the pattern string not followed in this code?

Problems with numbers (result of calculations) alignment using siunitx package inside tabular environment

Visa for volunteering in England

Printing a string when grep does not get a match

Declining welcome lunch invitation at new job due to Ramadan

Pressure to defend the relevance of one's area of mathematics

What is the most remote airport from the center of the city it supposedly serves?



How to partition a pgfplotstable to use in multiple tikzpictures? (and duplicate a row)


Pgfplotstable without headings rowMultiple Multi columns with pgfplotstableDouble row heading in pgfplotstablePostprocess row with pgfplotstableRemove row in table (pgfplotstable)pgfplotstable manually declare row datapgfplotstable: use of /.add{}{}create header row and index column pgfplotstableColumn width and row height with pgfplotstablepgfplotstable: How to use 'pgfplotstablename'













1















I'm trying to create multiple plots from one pgfplotstable (data below). I can create the plots by manually editing the data (dataA and dataB below) but this is error-prone. Essentially, I need help:





  • partitioning the table based on column cat


  • duplicating the last row (except xmin is xmax from the previous row)


  • creating a loop to create multiple tikzpictures [this I can probably figure out myself!]


enter image description here



documentclass{article}
usepackage{pgfplotstable}

pgfplotsset{compat=1.15}

begin{document}
pgfplotstableread{
x xmin xmax par1 y cat par2
0.5 0 1 yes 0.3 1 no
1.5 1 2 yes 0.6 1 no
2.5 2 3 yes 0.7 1 no
0.5 0 1 yes 0.4 2 no
1.5 1 2 yes 0.5 2 no
2.5 2 3 yes 0.9 2 no
}data

pgfplotstableread{
x xmin xmax par1 y cat par2
0.5 0 1 yes 0.3 1 no
1.5 1 2 yes 0.6 1 no
2.5 2 3 yes 0.7 1 no
2.5 3 3 yes 0.7 1 no
}dataA

pgfplotstableread{
x xmin xmax par1 y cat par2
0.5 0 1 yes 0.4 2 no
1.5 1 2 yes 0.5 2 no
2.5 2 3 yes 0.9 2 no
2.5 3 3 yes 0.9 2 no
}dataB

begin{tikzpicture}
begin{axis}[ybar, ymin=0, ymax=1, xmin=-0.5, xmax=3.5]
addplot[black, ybar interval] table[x=xmin,y=y] {dataA}closedcycle;
end{axis}
end{tikzpicture}

begin{tikzpicture}
begin{axis}[ybar, ymin=0, ymax=1, xmin=-0.5, xmax=3.5]
addplot[black, ybar interval] table[x=xmin,y=y] {dataB}closedcycle;
end{axis}
end{tikzpicture}

end{document}


Regarding partitioning the data, I have been able to print the partitioned table, but then how can I use it as input for addplot?



newcommand{filtertable}[2]{
pgfplotstabletypeset[
columns/par1/.style={string type},
columns/par2/.style={string type},
row predicate/.code={%
pgfplotstablegetelem{##1}{cat}of{#1}
ifnumpgfplotsretval=#2relax
elsepgfplotstableuserowfalsefi}
]{#1}
}

filtertable{data}{1}
filtertable{data}{2}


Regarding duplicating the last row, the only relevant value in the last rows is xmin. According to the PGF manual with ybar interval "The last y value will be ignored." I have unsuccessfully tried to create the same plot without the additional row. Note the distance between xmin and xmax must not always equal 1.










share|improve this question





























    1















    I'm trying to create multiple plots from one pgfplotstable (data below). I can create the plots by manually editing the data (dataA and dataB below) but this is error-prone. Essentially, I need help:





    • partitioning the table based on column cat


    • duplicating the last row (except xmin is xmax from the previous row)


    • creating a loop to create multiple tikzpictures [this I can probably figure out myself!]


    enter image description here



    documentclass{article}
    usepackage{pgfplotstable}

    pgfplotsset{compat=1.15}

    begin{document}
    pgfplotstableread{
    x xmin xmax par1 y cat par2
    0.5 0 1 yes 0.3 1 no
    1.5 1 2 yes 0.6 1 no
    2.5 2 3 yes 0.7 1 no
    0.5 0 1 yes 0.4 2 no
    1.5 1 2 yes 0.5 2 no
    2.5 2 3 yes 0.9 2 no
    }data

    pgfplotstableread{
    x xmin xmax par1 y cat par2
    0.5 0 1 yes 0.3 1 no
    1.5 1 2 yes 0.6 1 no
    2.5 2 3 yes 0.7 1 no
    2.5 3 3 yes 0.7 1 no
    }dataA

    pgfplotstableread{
    x xmin xmax par1 y cat par2
    0.5 0 1 yes 0.4 2 no
    1.5 1 2 yes 0.5 2 no
    2.5 2 3 yes 0.9 2 no
    2.5 3 3 yes 0.9 2 no
    }dataB

    begin{tikzpicture}
    begin{axis}[ybar, ymin=0, ymax=1, xmin=-0.5, xmax=3.5]
    addplot[black, ybar interval] table[x=xmin,y=y] {dataA}closedcycle;
    end{axis}
    end{tikzpicture}

    begin{tikzpicture}
    begin{axis}[ybar, ymin=0, ymax=1, xmin=-0.5, xmax=3.5]
    addplot[black, ybar interval] table[x=xmin,y=y] {dataB}closedcycle;
    end{axis}
    end{tikzpicture}

    end{document}


    Regarding partitioning the data, I have been able to print the partitioned table, but then how can I use it as input for addplot?



    newcommand{filtertable}[2]{
    pgfplotstabletypeset[
    columns/par1/.style={string type},
    columns/par2/.style={string type},
    row predicate/.code={%
    pgfplotstablegetelem{##1}{cat}of{#1}
    ifnumpgfplotsretval=#2relax
    elsepgfplotstableuserowfalsefi}
    ]{#1}
    }

    filtertable{data}{1}
    filtertable{data}{2}


    Regarding duplicating the last row, the only relevant value in the last rows is xmin. According to the PGF manual with ybar interval "The last y value will be ignored." I have unsuccessfully tried to create the same plot without the additional row. Note the distance between xmin and xmax must not always equal 1.










    share|improve this question



























      1












      1








      1








      I'm trying to create multiple plots from one pgfplotstable (data below). I can create the plots by manually editing the data (dataA and dataB below) but this is error-prone. Essentially, I need help:





      • partitioning the table based on column cat


      • duplicating the last row (except xmin is xmax from the previous row)


      • creating a loop to create multiple tikzpictures [this I can probably figure out myself!]


      enter image description here



      documentclass{article}
      usepackage{pgfplotstable}

      pgfplotsset{compat=1.15}

      begin{document}
      pgfplotstableread{
      x xmin xmax par1 y cat par2
      0.5 0 1 yes 0.3 1 no
      1.5 1 2 yes 0.6 1 no
      2.5 2 3 yes 0.7 1 no
      0.5 0 1 yes 0.4 2 no
      1.5 1 2 yes 0.5 2 no
      2.5 2 3 yes 0.9 2 no
      }data

      pgfplotstableread{
      x xmin xmax par1 y cat par2
      0.5 0 1 yes 0.3 1 no
      1.5 1 2 yes 0.6 1 no
      2.5 2 3 yes 0.7 1 no
      2.5 3 3 yes 0.7 1 no
      }dataA

      pgfplotstableread{
      x xmin xmax par1 y cat par2
      0.5 0 1 yes 0.4 2 no
      1.5 1 2 yes 0.5 2 no
      2.5 2 3 yes 0.9 2 no
      2.5 3 3 yes 0.9 2 no
      }dataB

      begin{tikzpicture}
      begin{axis}[ybar, ymin=0, ymax=1, xmin=-0.5, xmax=3.5]
      addplot[black, ybar interval] table[x=xmin,y=y] {dataA}closedcycle;
      end{axis}
      end{tikzpicture}

      begin{tikzpicture}
      begin{axis}[ybar, ymin=0, ymax=1, xmin=-0.5, xmax=3.5]
      addplot[black, ybar interval] table[x=xmin,y=y] {dataB}closedcycle;
      end{axis}
      end{tikzpicture}

      end{document}


      Regarding partitioning the data, I have been able to print the partitioned table, but then how can I use it as input for addplot?



      newcommand{filtertable}[2]{
      pgfplotstabletypeset[
      columns/par1/.style={string type},
      columns/par2/.style={string type},
      row predicate/.code={%
      pgfplotstablegetelem{##1}{cat}of{#1}
      ifnumpgfplotsretval=#2relax
      elsepgfplotstableuserowfalsefi}
      ]{#1}
      }

      filtertable{data}{1}
      filtertable{data}{2}


      Regarding duplicating the last row, the only relevant value in the last rows is xmin. According to the PGF manual with ybar interval "The last y value will be ignored." I have unsuccessfully tried to create the same plot without the additional row. Note the distance between xmin and xmax must not always equal 1.










      share|improve this question
















      I'm trying to create multiple plots from one pgfplotstable (data below). I can create the plots by manually editing the data (dataA and dataB below) but this is error-prone. Essentially, I need help:





      • partitioning the table based on column cat


      • duplicating the last row (except xmin is xmax from the previous row)


      • creating a loop to create multiple tikzpictures [this I can probably figure out myself!]


      enter image description here



      documentclass{article}
      usepackage{pgfplotstable}

      pgfplotsset{compat=1.15}

      begin{document}
      pgfplotstableread{
      x xmin xmax par1 y cat par2
      0.5 0 1 yes 0.3 1 no
      1.5 1 2 yes 0.6 1 no
      2.5 2 3 yes 0.7 1 no
      0.5 0 1 yes 0.4 2 no
      1.5 1 2 yes 0.5 2 no
      2.5 2 3 yes 0.9 2 no
      }data

      pgfplotstableread{
      x xmin xmax par1 y cat par2
      0.5 0 1 yes 0.3 1 no
      1.5 1 2 yes 0.6 1 no
      2.5 2 3 yes 0.7 1 no
      2.5 3 3 yes 0.7 1 no
      }dataA

      pgfplotstableread{
      x xmin xmax par1 y cat par2
      0.5 0 1 yes 0.4 2 no
      1.5 1 2 yes 0.5 2 no
      2.5 2 3 yes 0.9 2 no
      2.5 3 3 yes 0.9 2 no
      }dataB

      begin{tikzpicture}
      begin{axis}[ybar, ymin=0, ymax=1, xmin=-0.5, xmax=3.5]
      addplot[black, ybar interval] table[x=xmin,y=y] {dataA}closedcycle;
      end{axis}
      end{tikzpicture}

      begin{tikzpicture}
      begin{axis}[ybar, ymin=0, ymax=1, xmin=-0.5, xmax=3.5]
      addplot[black, ybar interval] table[x=xmin,y=y] {dataB}closedcycle;
      end{axis}
      end{tikzpicture}

      end{document}


      Regarding partitioning the data, I have been able to print the partitioned table, but then how can I use it as input for addplot?



      newcommand{filtertable}[2]{
      pgfplotstabletypeset[
      columns/par1/.style={string type},
      columns/par2/.style={string type},
      row predicate/.code={%
      pgfplotstablegetelem{##1}{cat}of{#1}
      ifnumpgfplotsretval=#2relax
      elsepgfplotstableuserowfalsefi}
      ]{#1}
      }

      filtertable{data}{1}
      filtertable{data}{2}


      Regarding duplicating the last row, the only relevant value in the last rows is xmin. According to the PGF manual with ybar interval "The last y value will be ignored." I have unsuccessfully tried to create the same plot without the additional row. Note the distance between xmin and xmax must not always equal 1.







      tikz-pgf pgfplotstable tikz-datavisualization






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 3 hours ago







      Frank Seifert

















      asked 3 hours ago









      Frank SeifertFrank Seifert

      2,48773252




      2,48773252






















          1 Answer
          1






          active

          oldest

          votes


















          0














          One way is to install a filter like



          unbounded coords=discard,
          x filter/.expression={thisrow{cat}==1 ? x : nan}



          MWE:



          documentclass{article}
          usepackage{pgfplotstable}

          pgfplotsset{compat=1.15}

          begin{document}
          pgfplotstableread{
          x xmin xmax par1 y cat par2
          0.5 0 1 yes 0.3 1 no
          1.5 1 2 yes 0.6 1 no
          2.5 2 3 yes 0.7 1 no
          0.5 0 1 yes 0.4 2 no
          1.5 1 2 yes 0.5 2 no
          2.5 2 3 yes 0.9 2 no
          }data

          pgfplotstableread{
          x xmin xmax par1 y cat par2
          0.5 0 1 yes 0.3 1 no
          1.5 1 2 yes 0.6 1 no
          2.5 2 3 yes 0.7 1 no
          2.5 3 3 yes 0.7 1 no
          }dataA

          pgfplotstableread{
          x xmin xmax par1 y cat par2
          0.5 0 1 yes 0.4 2 no
          1.5 1 2 yes 0.5 2 no
          2.5 2 3 yes 0.9 2 no
          2.5 3 3 yes 0.9 2 no
          }dataB

          begin{tikzpicture}
          begin{axis}[ybar, ymin=0, ymax=1, xmin=-0.5, xmax=3.5]
          addplot[black, ybar interval,unbounded coords=discard,
          x filter/.expression={thisrow{cat}==1 ? x : nan}] table[x=xmin,y=y] {data}closedcycle;
          end{axis}
          end{tikzpicture}

          begin{tikzpicture}
          begin{axis}[ybar, ymin=0, ymax=1, xmin=-0.5, xmax=3.5]
          addplot[black, ybar interval,unbounded coords=discard,
          x filter/.expression={thisrow{cat}==2 ? x : nan}] table[x=xmin,y=y] {data}closedcycle;
          end{axis}
          end{tikzpicture}

          end{document}


          enter image description here






          share|improve this answer
























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "85"
            };
            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%2ftex.stackexchange.com%2fquestions%2f488292%2fhow-to-partition-a-pgfplotstable-to-use-in-multiple-tikzpictures-and-duplicate%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














            One way is to install a filter like



            unbounded coords=discard,
            x filter/.expression={thisrow{cat}==1 ? x : nan}



            MWE:



            documentclass{article}
            usepackage{pgfplotstable}

            pgfplotsset{compat=1.15}

            begin{document}
            pgfplotstableread{
            x xmin xmax par1 y cat par2
            0.5 0 1 yes 0.3 1 no
            1.5 1 2 yes 0.6 1 no
            2.5 2 3 yes 0.7 1 no
            0.5 0 1 yes 0.4 2 no
            1.5 1 2 yes 0.5 2 no
            2.5 2 3 yes 0.9 2 no
            }data

            pgfplotstableread{
            x xmin xmax par1 y cat par2
            0.5 0 1 yes 0.3 1 no
            1.5 1 2 yes 0.6 1 no
            2.5 2 3 yes 0.7 1 no
            2.5 3 3 yes 0.7 1 no
            }dataA

            pgfplotstableread{
            x xmin xmax par1 y cat par2
            0.5 0 1 yes 0.4 2 no
            1.5 1 2 yes 0.5 2 no
            2.5 2 3 yes 0.9 2 no
            2.5 3 3 yes 0.9 2 no
            }dataB

            begin{tikzpicture}
            begin{axis}[ybar, ymin=0, ymax=1, xmin=-0.5, xmax=3.5]
            addplot[black, ybar interval,unbounded coords=discard,
            x filter/.expression={thisrow{cat}==1 ? x : nan}] table[x=xmin,y=y] {data}closedcycle;
            end{axis}
            end{tikzpicture}

            begin{tikzpicture}
            begin{axis}[ybar, ymin=0, ymax=1, xmin=-0.5, xmax=3.5]
            addplot[black, ybar interval,unbounded coords=discard,
            x filter/.expression={thisrow{cat}==2 ? x : nan}] table[x=xmin,y=y] {data}closedcycle;
            end{axis}
            end{tikzpicture}

            end{document}


            enter image description here






            share|improve this answer




























              0














              One way is to install a filter like



              unbounded coords=discard,
              x filter/.expression={thisrow{cat}==1 ? x : nan}



              MWE:



              documentclass{article}
              usepackage{pgfplotstable}

              pgfplotsset{compat=1.15}

              begin{document}
              pgfplotstableread{
              x xmin xmax par1 y cat par2
              0.5 0 1 yes 0.3 1 no
              1.5 1 2 yes 0.6 1 no
              2.5 2 3 yes 0.7 1 no
              0.5 0 1 yes 0.4 2 no
              1.5 1 2 yes 0.5 2 no
              2.5 2 3 yes 0.9 2 no
              }data

              pgfplotstableread{
              x xmin xmax par1 y cat par2
              0.5 0 1 yes 0.3 1 no
              1.5 1 2 yes 0.6 1 no
              2.5 2 3 yes 0.7 1 no
              2.5 3 3 yes 0.7 1 no
              }dataA

              pgfplotstableread{
              x xmin xmax par1 y cat par2
              0.5 0 1 yes 0.4 2 no
              1.5 1 2 yes 0.5 2 no
              2.5 2 3 yes 0.9 2 no
              2.5 3 3 yes 0.9 2 no
              }dataB

              begin{tikzpicture}
              begin{axis}[ybar, ymin=0, ymax=1, xmin=-0.5, xmax=3.5]
              addplot[black, ybar interval,unbounded coords=discard,
              x filter/.expression={thisrow{cat}==1 ? x : nan}] table[x=xmin,y=y] {data}closedcycle;
              end{axis}
              end{tikzpicture}

              begin{tikzpicture}
              begin{axis}[ybar, ymin=0, ymax=1, xmin=-0.5, xmax=3.5]
              addplot[black, ybar interval,unbounded coords=discard,
              x filter/.expression={thisrow{cat}==2 ? x : nan}] table[x=xmin,y=y] {data}closedcycle;
              end{axis}
              end{tikzpicture}

              end{document}


              enter image description here






              share|improve this answer


























                0












                0








                0







                One way is to install a filter like



                unbounded coords=discard,
                x filter/.expression={thisrow{cat}==1 ? x : nan}



                MWE:



                documentclass{article}
                usepackage{pgfplotstable}

                pgfplotsset{compat=1.15}

                begin{document}
                pgfplotstableread{
                x xmin xmax par1 y cat par2
                0.5 0 1 yes 0.3 1 no
                1.5 1 2 yes 0.6 1 no
                2.5 2 3 yes 0.7 1 no
                0.5 0 1 yes 0.4 2 no
                1.5 1 2 yes 0.5 2 no
                2.5 2 3 yes 0.9 2 no
                }data

                pgfplotstableread{
                x xmin xmax par1 y cat par2
                0.5 0 1 yes 0.3 1 no
                1.5 1 2 yes 0.6 1 no
                2.5 2 3 yes 0.7 1 no
                2.5 3 3 yes 0.7 1 no
                }dataA

                pgfplotstableread{
                x xmin xmax par1 y cat par2
                0.5 0 1 yes 0.4 2 no
                1.5 1 2 yes 0.5 2 no
                2.5 2 3 yes 0.9 2 no
                2.5 3 3 yes 0.9 2 no
                }dataB

                begin{tikzpicture}
                begin{axis}[ybar, ymin=0, ymax=1, xmin=-0.5, xmax=3.5]
                addplot[black, ybar interval,unbounded coords=discard,
                x filter/.expression={thisrow{cat}==1 ? x : nan}] table[x=xmin,y=y] {data}closedcycle;
                end{axis}
                end{tikzpicture}

                begin{tikzpicture}
                begin{axis}[ybar, ymin=0, ymax=1, xmin=-0.5, xmax=3.5]
                addplot[black, ybar interval,unbounded coords=discard,
                x filter/.expression={thisrow{cat}==2 ? x : nan}] table[x=xmin,y=y] {data}closedcycle;
                end{axis}
                end{tikzpicture}

                end{document}


                enter image description here






                share|improve this answer













                One way is to install a filter like



                unbounded coords=discard,
                x filter/.expression={thisrow{cat}==1 ? x : nan}



                MWE:



                documentclass{article}
                usepackage{pgfplotstable}

                pgfplotsset{compat=1.15}

                begin{document}
                pgfplotstableread{
                x xmin xmax par1 y cat par2
                0.5 0 1 yes 0.3 1 no
                1.5 1 2 yes 0.6 1 no
                2.5 2 3 yes 0.7 1 no
                0.5 0 1 yes 0.4 2 no
                1.5 1 2 yes 0.5 2 no
                2.5 2 3 yes 0.9 2 no
                }data

                pgfplotstableread{
                x xmin xmax par1 y cat par2
                0.5 0 1 yes 0.3 1 no
                1.5 1 2 yes 0.6 1 no
                2.5 2 3 yes 0.7 1 no
                2.5 3 3 yes 0.7 1 no
                }dataA

                pgfplotstableread{
                x xmin xmax par1 y cat par2
                0.5 0 1 yes 0.4 2 no
                1.5 1 2 yes 0.5 2 no
                2.5 2 3 yes 0.9 2 no
                2.5 3 3 yes 0.9 2 no
                }dataB

                begin{tikzpicture}
                begin{axis}[ybar, ymin=0, ymax=1, xmin=-0.5, xmax=3.5]
                addplot[black, ybar interval,unbounded coords=discard,
                x filter/.expression={thisrow{cat}==1 ? x : nan}] table[x=xmin,y=y] {data}closedcycle;
                end{axis}
                end{tikzpicture}

                begin{tikzpicture}
                begin{axis}[ybar, ymin=0, ymax=1, xmin=-0.5, xmax=3.5]
                addplot[black, ybar interval,unbounded coords=discard,
                x filter/.expression={thisrow{cat}==2 ? x : nan}] table[x=xmin,y=y] {data}closedcycle;
                end{axis}
                end{tikzpicture}

                end{document}


                enter image description here







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 3 hours ago









                marmotmarmot

                122k6160300




                122k6160300






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to TeX - LaTeX 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.


                    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%2ftex.stackexchange.com%2fquestions%2f488292%2fhow-to-partition-a-pgfplotstable-to-use-in-multiple-tikzpictures-and-duplicate%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

                    Installing LyX: “No textclass is found.”LyX installation error- text class not found- 'Reconfigure' or...

                    (1602) Indiana Índice Designación y nombre Características orbitales Véase...

                    Universidad Autónoma de Occidente Índice Historia Campus Facultades Programas Académicos Medios de...