Computationally populating tables with probability dataProject management tables (with cost “spread sheets”) using spreadtabCreate LaTeX tables from plain numerical data?Three graphics with tables of dataDynamic Tables from Data ArrayUse data from other multiple data files with calculationsFull width tables for written dataAligning tables with multiple data typesCreating a Weibull probability densitySupport for “tables of functions”Additional space cells in tables with equations

Is this draw by repetition?

Theorists sure want true answers to this!

One verb to replace 'be a member of' a club

In the UK, is it possible to get a referendum by a court decision?

How to find if SQL server backup is encrypted with TDE without restoring the backup

Is this answer explanation correct?

Placement of More Information/Help Icon button for Radio Buttons

Did 'Cinema Songs' exist during Hiranyakshipu's time?

Notepad++ delete until colon for every line with replace all

How could indestructible materials be used in power generation?

Why do I get negative height?

Mathematica command that allows it to read my intentions

Bullying boss launched a smear campaign and made me unemployable

Why was Sir Cadogan fired?

How to install cross-compiler on Ubuntu 18.04?

How to stretch the corners of this image so that it looks like a perfect rectangle?

Does int main() need a declaration on C++?

Do Iron Man suits sport waste management systems?

Calculate the Mean mean of two numbers

Does Dispel Magic work on Tiny Hut?

What historical events would have to change in order to make 19th century "steampunk" technology possible?

Is it possible to map the firing of neurons in the human brain so as to stimulate artificial memories in someone else?

Using "tail" to follow a file without displaying the most recent lines

GFCI outlets - can they be repaired? Are they really needed at the end of a circuit?



Computationally populating tables with probability data


Project management tables (with cost “spread sheets”) using spreadtabCreate LaTeX tables from plain numerical data?Three graphics with tables of dataDynamic Tables from Data ArrayUse data from other multiple data files with calculationsFull width tables for written dataAligning tables with multiple data typesCreating a Weibull probability densitySupport for “tables of functions”Additional space cells in tables with equations













5















I have the following template for a journal article featuring a basic table:




enter image description here




The code looks something like this:



documentclass[jou,apacite]apa6
usepackage[utf8]inputenc
usepackageamsmath

titleTitle of the article
authorAuthor Name
affiliationAffiliation

abstractThis is the abstract.

begindocument

maketitle
sectionThis is the heading for the first section of the article.
Lorem ipsum.

Results are presented in Table~reftab1.

begintable[!htb]
captionSample table.labeltab1
begintabularccc
hline\[-1.5ex]
AAA & BBB & CCC \[0.5ex]
hline\[-1.5ex]
1.0 & 2.0 & 3.0\[0.5ex]
1.0 & 2.0 & 3.0\[0.5ex]
hline
endtabular
endtable


sectionThis is the heading for the second section of the article.
Lorem ipsum.

enddocument



What I want to know is:
Rather than typing in every value of a table manually, and potentially mistyping a digit or a decimal point here or there; is LaTeX capable of evaluating the math for me?



Consider the odds or probability of a coin toss winning streak, for example:




Each flip has 50:50 (1:1) odds:
50% probability of winning
50% probability of losing



The odds of winning two consecutive flips are 75:25 (3:1):

25% probability of winning
75% probability of losing



The odds of
winning three consecutive flips are 87.5:12.5 (7:1):

12.5% probability of winning

87.5% probability of losing



The odds of winning four consecutive flips are 93.75/6.25 (15:1):

6.25% probability of winning

93.75% probability of losing




..and so on.




Probability of winning n consecutive flips is 2^(-n) * 100.

Probability of not winning n consecutive flips is 100 - (2^(-n))
* 100




Of course I could just calculate each value and type in every cell manually, but I might want to show ten or more flips. Anyway, is this something LaTeX can do?










share|improve this question
























  • Are you free to use LuaLaTeX, or must you use either pdfLaTeX or XeLaTeX?

    – Mico
    2 days ago











  • Hi @Mico, I'm not actually sure. I'm still new to LaTeX. I actually just use overleaf.com for most things.

    – tjt263
    2 days ago






  • 2





    You might consider sagemath, if you want to have very sophisticated symbolic or numerical mathematics; it is free and open source, but requires a significant investment of time to learn.

    – Benjamin McKay
    2 days ago






  • 1





    @Mico Actually I just checked. The compiler I've been using is pdfLaTeX but have the others available too, if necessary.

    – tjt263
    2 days ago















5















I have the following template for a journal article featuring a basic table:




enter image description here




The code looks something like this:



documentclass[jou,apacite]apa6
usepackage[utf8]inputenc
usepackageamsmath

titleTitle of the article
authorAuthor Name
affiliationAffiliation

abstractThis is the abstract.

begindocument

maketitle
sectionThis is the heading for the first section of the article.
Lorem ipsum.

Results are presented in Table~reftab1.

begintable[!htb]
captionSample table.labeltab1
begintabularccc
hline\[-1.5ex]
AAA & BBB & CCC \[0.5ex]
hline\[-1.5ex]
1.0 & 2.0 & 3.0\[0.5ex]
1.0 & 2.0 & 3.0\[0.5ex]
hline
endtabular
endtable


sectionThis is the heading for the second section of the article.
Lorem ipsum.

enddocument



What I want to know is:
Rather than typing in every value of a table manually, and potentially mistyping a digit or a decimal point here or there; is LaTeX capable of evaluating the math for me?



Consider the odds or probability of a coin toss winning streak, for example:




Each flip has 50:50 (1:1) odds:
50% probability of winning
50% probability of losing



The odds of winning two consecutive flips are 75:25 (3:1):

25% probability of winning
75% probability of losing



The odds of
winning three consecutive flips are 87.5:12.5 (7:1):

12.5% probability of winning

87.5% probability of losing



The odds of winning four consecutive flips are 93.75/6.25 (15:1):

6.25% probability of winning

93.75% probability of losing




..and so on.




Probability of winning n consecutive flips is 2^(-n) * 100.

Probability of not winning n consecutive flips is 100 - (2^(-n))
* 100




Of course I could just calculate each value and type in every cell manually, but I might want to show ten or more flips. Anyway, is this something LaTeX can do?










share|improve this question
























  • Are you free to use LuaLaTeX, or must you use either pdfLaTeX or XeLaTeX?

    – Mico
    2 days ago











  • Hi @Mico, I'm not actually sure. I'm still new to LaTeX. I actually just use overleaf.com for most things.

    – tjt263
    2 days ago






  • 2





    You might consider sagemath, if you want to have very sophisticated symbolic or numerical mathematics; it is free and open source, but requires a significant investment of time to learn.

    – Benjamin McKay
    2 days ago






  • 1





    @Mico Actually I just checked. The compiler I've been using is pdfLaTeX but have the others available too, if necessary.

    – tjt263
    2 days ago













5












5








5








I have the following template for a journal article featuring a basic table:




enter image description here




The code looks something like this:



documentclass[jou,apacite]apa6
usepackage[utf8]inputenc
usepackageamsmath

titleTitle of the article
authorAuthor Name
affiliationAffiliation

abstractThis is the abstract.

begindocument

maketitle
sectionThis is the heading for the first section of the article.
Lorem ipsum.

Results are presented in Table~reftab1.

begintable[!htb]
captionSample table.labeltab1
begintabularccc
hline\[-1.5ex]
AAA & BBB & CCC \[0.5ex]
hline\[-1.5ex]
1.0 & 2.0 & 3.0\[0.5ex]
1.0 & 2.0 & 3.0\[0.5ex]
hline
endtabular
endtable


sectionThis is the heading for the second section of the article.
Lorem ipsum.

enddocument



What I want to know is:
Rather than typing in every value of a table manually, and potentially mistyping a digit or a decimal point here or there; is LaTeX capable of evaluating the math for me?



Consider the odds or probability of a coin toss winning streak, for example:




Each flip has 50:50 (1:1) odds:
50% probability of winning
50% probability of losing



The odds of winning two consecutive flips are 75:25 (3:1):

25% probability of winning
75% probability of losing



The odds of
winning three consecutive flips are 87.5:12.5 (7:1):

12.5% probability of winning

87.5% probability of losing



The odds of winning four consecutive flips are 93.75/6.25 (15:1):

6.25% probability of winning

93.75% probability of losing




..and so on.




Probability of winning n consecutive flips is 2^(-n) * 100.

Probability of not winning n consecutive flips is 100 - (2^(-n))
* 100




Of course I could just calculate each value and type in every cell manually, but I might want to show ten or more flips. Anyway, is this something LaTeX can do?










share|improve this question
















I have the following template for a journal article featuring a basic table:




enter image description here




The code looks something like this:



documentclass[jou,apacite]apa6
usepackage[utf8]inputenc
usepackageamsmath

titleTitle of the article
authorAuthor Name
affiliationAffiliation

abstractThis is the abstract.

begindocument

maketitle
sectionThis is the heading for the first section of the article.
Lorem ipsum.

Results are presented in Table~reftab1.

begintable[!htb]
captionSample table.labeltab1
begintabularccc
hline\[-1.5ex]
AAA & BBB & CCC \[0.5ex]
hline\[-1.5ex]
1.0 & 2.0 & 3.0\[0.5ex]
1.0 & 2.0 & 3.0\[0.5ex]
hline
endtabular
endtable


sectionThis is the heading for the second section of the article.
Lorem ipsum.

enddocument



What I want to know is:
Rather than typing in every value of a table manually, and potentially mistyping a digit or a decimal point here or there; is LaTeX capable of evaluating the math for me?



Consider the odds or probability of a coin toss winning streak, for example:




Each flip has 50:50 (1:1) odds:
50% probability of winning
50% probability of losing



The odds of winning two consecutive flips are 75:25 (3:1):

25% probability of winning
75% probability of losing



The odds of
winning three consecutive flips are 87.5:12.5 (7:1):

12.5% probability of winning

87.5% probability of losing



The odds of winning four consecutive flips are 93.75/6.25 (15:1):

6.25% probability of winning

93.75% probability of losing




..and so on.




Probability of winning n consecutive flips is 2^(-n) * 100.

Probability of not winning n consecutive flips is 100 - (2^(-n))
* 100




Of course I could just calculate each value and type in every cell manually, but I might want to show ten or more flips. Anyway, is this something LaTeX can do?







tables equations amsmath calculations






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 2 days ago







tjt263

















asked 2 days ago









tjt263tjt263

2637




2637












  • Are you free to use LuaLaTeX, or must you use either pdfLaTeX or XeLaTeX?

    – Mico
    2 days ago











  • Hi @Mico, I'm not actually sure. I'm still new to LaTeX. I actually just use overleaf.com for most things.

    – tjt263
    2 days ago






  • 2





    You might consider sagemath, if you want to have very sophisticated symbolic or numerical mathematics; it is free and open source, but requires a significant investment of time to learn.

    – Benjamin McKay
    2 days ago






  • 1





    @Mico Actually I just checked. The compiler I've been using is pdfLaTeX but have the others available too, if necessary.

    – tjt263
    2 days ago

















  • Are you free to use LuaLaTeX, or must you use either pdfLaTeX or XeLaTeX?

    – Mico
    2 days ago











  • Hi @Mico, I'm not actually sure. I'm still new to LaTeX. I actually just use overleaf.com for most things.

    – tjt263
    2 days ago






  • 2





    You might consider sagemath, if you want to have very sophisticated symbolic or numerical mathematics; it is free and open source, but requires a significant investment of time to learn.

    – Benjamin McKay
    2 days ago






  • 1





    @Mico Actually I just checked. The compiler I've been using is pdfLaTeX but have the others available too, if necessary.

    – tjt263
    2 days ago
















Are you free to use LuaLaTeX, or must you use either pdfLaTeX or XeLaTeX?

– Mico
2 days ago





Are you free to use LuaLaTeX, or must you use either pdfLaTeX or XeLaTeX?

– Mico
2 days ago













Hi @Mico, I'm not actually sure. I'm still new to LaTeX. I actually just use overleaf.com for most things.

– tjt263
2 days ago





Hi @Mico, I'm not actually sure. I'm still new to LaTeX. I actually just use overleaf.com for most things.

– tjt263
2 days ago




2




2





You might consider sagemath, if you want to have very sophisticated symbolic or numerical mathematics; it is free and open source, but requires a significant investment of time to learn.

– Benjamin McKay
2 days ago





You might consider sagemath, if you want to have very sophisticated symbolic or numerical mathematics; it is free and open source, but requires a significant investment of time to learn.

– Benjamin McKay
2 days ago




1




1





@Mico Actually I just checked. The compiler I've been using is pdfLaTeX but have the others available too, if necessary.

– tjt263
2 days ago





@Mico Actually I just checked. The compiler I've been using is pdfLaTeX but have the others available too, if necessary.

– tjt263
2 days ago










2 Answers
2






active

oldest

votes


















7














Here's a LuaLaTeX-based solution to the problem of printing a table of run probabilities -- if the underlying experiment is tossing a "fair" coin.



enter image description here



% !TEX TS-program = lualatex
documentclass[jou,apacite]apa6
usepackageamsmath,booktabs,lipsum
letPrrelax % undefine "Pr"
DeclareMathOperatorPrPr

usepackageunicode-math % choose suitable math and text fonts
setmainfontStix Two Text[Ligatures=TeX,Common]
setmathfontStix Two Math

titleTitle of the article
shorttitleTitle
authorAuthor Name
affiliationAffiliation
abstractThis is the abstract.

usepackageluacode
beginluacode


function run_prob ( j )
return (0.5)^j
end
function printrows ( n )
for i=1,n do
runprob = 100*run_prob(i)
runprobcomp = 100-runprob
tex.sprint ( i .. "&" .. runprob .. "&" .. runprobcomp .. "\\" )
end
end


endluacode

begindocument
maketitle

sectionIn the beginning
Lorem ipsum.

Results are presented in Table~reftab1.

begintable[!htb]
captionFair coin tosses: Probabilities of runs of length $n$, in percent.labeltab1

$beginarray@lll@
toprule
n & Pr(textRun) & 100-Pr(textRun)\
midrule
%% Invoke the 'printrows' Lua function:
directluaprintrows(12)
bottomrule
endarray$
endtable

lipsum[1-3]
enddocument





share|improve this answer






























    2














    A solution using the CAS, Sage, given below. The documentation for sagetex on CTAN is here and an example using Sage/LaTeX/sagetex is here. Sage is not part of the LaTeX distribution so it needs to be installed on your machine or open a free Cocalc account (the easiest way). Here is the code.



    documentclass[jou,apacite]apa6
    usepackage[utf8]inputenc
    usepackageamsmath
    usepackagesagetex
    titleTitle of the article
    authorAuthor Name
    affiliationAffiliation
    abstractThis is the abstract.

    begindocument
    beginsagesilent
    output = r"begintable[!htb]"
    output += r"captionSample table.labeltab1"
    output += r"begintabularccc"
    output += r"hline"
    for i in range(1,13):
    output += r"%s & %s & %s \"%(i,(100*.5^i).n(digits=7),(100-100*.5^i).n(digits=7))
    output += r"hline"
    output += r"endtabular"
    output += r"endtable"
    endsagesilent

    maketitle
    sectionThis is the heading for the first section of the article.
    The probability of $6$ consecutive flips is given by $sage(100*(.5)^6).n(digits=7)$%.
    The probability of $7$ consecutive flips is given by $sage(100*(.5)^7).n(digits=7)$%.

    Applying this to other values we can create the Table below:
    Results are presented in Table~reftab1.
    sagestroutput
    sectionThis is the heading for the second section of the article.
    Lorem ipsum.
    enddocument


    The output running in Cocalc is shown below:
    enter image description here
    In order to create the table with a loop, Sage has to run. When you build your file in Cocalc, LaTeX runs, then Sage, then LaTeX (where the results from the Sage run are inserted). This means in order for the first pass of LaTeX to compile, the table is not there. It gets created as a string in Sage and then inserted for the final LaTeX compilation. sagestr gets string data as opposed to sage for numerical data. Two nice features that you get with Sage: the ability to do calculations on the fly such as with the line The probability of $6$ consecutive flips is given by $sage(100*(.5)^6).n(digits=7)$%. where digits=7 sets the number of significant figures to use in the answer and Sage also can handle numerous probability distributions, see here. Finally, Sage allows you to use Python in your coding. With a CAS, Python, and LaTeX you can do pretty much anything.






    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%2f482495%2fcomputationally-populating-tables-with-probability-data%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









      7














      Here's a LuaLaTeX-based solution to the problem of printing a table of run probabilities -- if the underlying experiment is tossing a "fair" coin.



      enter image description here



      % !TEX TS-program = lualatex
      documentclass[jou,apacite]apa6
      usepackageamsmath,booktabs,lipsum
      letPrrelax % undefine "Pr"
      DeclareMathOperatorPrPr

      usepackageunicode-math % choose suitable math and text fonts
      setmainfontStix Two Text[Ligatures=TeX,Common]
      setmathfontStix Two Math

      titleTitle of the article
      shorttitleTitle
      authorAuthor Name
      affiliationAffiliation
      abstractThis is the abstract.

      usepackageluacode
      beginluacode


      function run_prob ( j )
      return (0.5)^j
      end
      function printrows ( n )
      for i=1,n do
      runprob = 100*run_prob(i)
      runprobcomp = 100-runprob
      tex.sprint ( i .. "&" .. runprob .. "&" .. runprobcomp .. "\\" )
      end
      end


      endluacode

      begindocument
      maketitle

      sectionIn the beginning
      Lorem ipsum.

      Results are presented in Table~reftab1.

      begintable[!htb]
      captionFair coin tosses: Probabilities of runs of length $n$, in percent.labeltab1

      $beginarray@lll@
      toprule
      n & Pr(textRun) & 100-Pr(textRun)\
      midrule
      %% Invoke the 'printrows' Lua function:
      directluaprintrows(12)
      bottomrule
      endarray$
      endtable

      lipsum[1-3]
      enddocument





      share|improve this answer



























        7














        Here's a LuaLaTeX-based solution to the problem of printing a table of run probabilities -- if the underlying experiment is tossing a "fair" coin.



        enter image description here



        % !TEX TS-program = lualatex
        documentclass[jou,apacite]apa6
        usepackageamsmath,booktabs,lipsum
        letPrrelax % undefine "Pr"
        DeclareMathOperatorPrPr

        usepackageunicode-math % choose suitable math and text fonts
        setmainfontStix Two Text[Ligatures=TeX,Common]
        setmathfontStix Two Math

        titleTitle of the article
        shorttitleTitle
        authorAuthor Name
        affiliationAffiliation
        abstractThis is the abstract.

        usepackageluacode
        beginluacode


        function run_prob ( j )
        return (0.5)^j
        end
        function printrows ( n )
        for i=1,n do
        runprob = 100*run_prob(i)
        runprobcomp = 100-runprob
        tex.sprint ( i .. "&" .. runprob .. "&" .. runprobcomp .. "\\" )
        end
        end


        endluacode

        begindocument
        maketitle

        sectionIn the beginning
        Lorem ipsum.

        Results are presented in Table~reftab1.

        begintable[!htb]
        captionFair coin tosses: Probabilities of runs of length $n$, in percent.labeltab1

        $beginarray@lll@
        toprule
        n & Pr(textRun) & 100-Pr(textRun)\
        midrule
        %% Invoke the 'printrows' Lua function:
        directluaprintrows(12)
        bottomrule
        endarray$
        endtable

        lipsum[1-3]
        enddocument





        share|improve this answer

























          7












          7








          7







          Here's a LuaLaTeX-based solution to the problem of printing a table of run probabilities -- if the underlying experiment is tossing a "fair" coin.



          enter image description here



          % !TEX TS-program = lualatex
          documentclass[jou,apacite]apa6
          usepackageamsmath,booktabs,lipsum
          letPrrelax % undefine "Pr"
          DeclareMathOperatorPrPr

          usepackageunicode-math % choose suitable math and text fonts
          setmainfontStix Two Text[Ligatures=TeX,Common]
          setmathfontStix Two Math

          titleTitle of the article
          shorttitleTitle
          authorAuthor Name
          affiliationAffiliation
          abstractThis is the abstract.

          usepackageluacode
          beginluacode


          function run_prob ( j )
          return (0.5)^j
          end
          function printrows ( n )
          for i=1,n do
          runprob = 100*run_prob(i)
          runprobcomp = 100-runprob
          tex.sprint ( i .. "&" .. runprob .. "&" .. runprobcomp .. "\\" )
          end
          end


          endluacode

          begindocument
          maketitle

          sectionIn the beginning
          Lorem ipsum.

          Results are presented in Table~reftab1.

          begintable[!htb]
          captionFair coin tosses: Probabilities of runs of length $n$, in percent.labeltab1

          $beginarray@lll@
          toprule
          n & Pr(textRun) & 100-Pr(textRun)\
          midrule
          %% Invoke the 'printrows' Lua function:
          directluaprintrows(12)
          bottomrule
          endarray$
          endtable

          lipsum[1-3]
          enddocument





          share|improve this answer













          Here's a LuaLaTeX-based solution to the problem of printing a table of run probabilities -- if the underlying experiment is tossing a "fair" coin.



          enter image description here



          % !TEX TS-program = lualatex
          documentclass[jou,apacite]apa6
          usepackageamsmath,booktabs,lipsum
          letPrrelax % undefine "Pr"
          DeclareMathOperatorPrPr

          usepackageunicode-math % choose suitable math and text fonts
          setmainfontStix Two Text[Ligatures=TeX,Common]
          setmathfontStix Two Math

          titleTitle of the article
          shorttitleTitle
          authorAuthor Name
          affiliationAffiliation
          abstractThis is the abstract.

          usepackageluacode
          beginluacode


          function run_prob ( j )
          return (0.5)^j
          end
          function printrows ( n )
          for i=1,n do
          runprob = 100*run_prob(i)
          runprobcomp = 100-runprob
          tex.sprint ( i .. "&" .. runprob .. "&" .. runprobcomp .. "\\" )
          end
          end


          endluacode

          begindocument
          maketitle

          sectionIn the beginning
          Lorem ipsum.

          Results are presented in Table~reftab1.

          begintable[!htb]
          captionFair coin tosses: Probabilities of runs of length $n$, in percent.labeltab1

          $beginarray@lll@
          toprule
          n & Pr(textRun) & 100-Pr(textRun)\
          midrule
          %% Invoke the 'printrows' Lua function:
          directluaprintrows(12)
          bottomrule
          endarray$
          endtable

          lipsum[1-3]
          enddocument






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 2 days ago









          MicoMico

          285k31388778




          285k31388778





















              2














              A solution using the CAS, Sage, given below. The documentation for sagetex on CTAN is here and an example using Sage/LaTeX/sagetex is here. Sage is not part of the LaTeX distribution so it needs to be installed on your machine or open a free Cocalc account (the easiest way). Here is the code.



              documentclass[jou,apacite]apa6
              usepackage[utf8]inputenc
              usepackageamsmath
              usepackagesagetex
              titleTitle of the article
              authorAuthor Name
              affiliationAffiliation
              abstractThis is the abstract.

              begindocument
              beginsagesilent
              output = r"begintable[!htb]"
              output += r"captionSample table.labeltab1"
              output += r"begintabularccc"
              output += r"hline"
              for i in range(1,13):
              output += r"%s & %s & %s \"%(i,(100*.5^i).n(digits=7),(100-100*.5^i).n(digits=7))
              output += r"hline"
              output += r"endtabular"
              output += r"endtable"
              endsagesilent

              maketitle
              sectionThis is the heading for the first section of the article.
              The probability of $6$ consecutive flips is given by $sage(100*(.5)^6).n(digits=7)$%.
              The probability of $7$ consecutive flips is given by $sage(100*(.5)^7).n(digits=7)$%.

              Applying this to other values we can create the Table below:
              Results are presented in Table~reftab1.
              sagestroutput
              sectionThis is the heading for the second section of the article.
              Lorem ipsum.
              enddocument


              The output running in Cocalc is shown below:
              enter image description here
              In order to create the table with a loop, Sage has to run. When you build your file in Cocalc, LaTeX runs, then Sage, then LaTeX (where the results from the Sage run are inserted). This means in order for the first pass of LaTeX to compile, the table is not there. It gets created as a string in Sage and then inserted for the final LaTeX compilation. sagestr gets string data as opposed to sage for numerical data. Two nice features that you get with Sage: the ability to do calculations on the fly such as with the line The probability of $6$ consecutive flips is given by $sage(100*(.5)^6).n(digits=7)$%. where digits=7 sets the number of significant figures to use in the answer and Sage also can handle numerous probability distributions, see here. Finally, Sage allows you to use Python in your coding. With a CAS, Python, and LaTeX you can do pretty much anything.






              share|improve this answer





























                2














                A solution using the CAS, Sage, given below. The documentation for sagetex on CTAN is here and an example using Sage/LaTeX/sagetex is here. Sage is not part of the LaTeX distribution so it needs to be installed on your machine or open a free Cocalc account (the easiest way). Here is the code.



                documentclass[jou,apacite]apa6
                usepackage[utf8]inputenc
                usepackageamsmath
                usepackagesagetex
                titleTitle of the article
                authorAuthor Name
                affiliationAffiliation
                abstractThis is the abstract.

                begindocument
                beginsagesilent
                output = r"begintable[!htb]"
                output += r"captionSample table.labeltab1"
                output += r"begintabularccc"
                output += r"hline"
                for i in range(1,13):
                output += r"%s & %s & %s \"%(i,(100*.5^i).n(digits=7),(100-100*.5^i).n(digits=7))
                output += r"hline"
                output += r"endtabular"
                output += r"endtable"
                endsagesilent

                maketitle
                sectionThis is the heading for the first section of the article.
                The probability of $6$ consecutive flips is given by $sage(100*(.5)^6).n(digits=7)$%.
                The probability of $7$ consecutive flips is given by $sage(100*(.5)^7).n(digits=7)$%.

                Applying this to other values we can create the Table below:
                Results are presented in Table~reftab1.
                sagestroutput
                sectionThis is the heading for the second section of the article.
                Lorem ipsum.
                enddocument


                The output running in Cocalc is shown below:
                enter image description here
                In order to create the table with a loop, Sage has to run. When you build your file in Cocalc, LaTeX runs, then Sage, then LaTeX (where the results from the Sage run are inserted). This means in order for the first pass of LaTeX to compile, the table is not there. It gets created as a string in Sage and then inserted for the final LaTeX compilation. sagestr gets string data as opposed to sage for numerical data. Two nice features that you get with Sage: the ability to do calculations on the fly such as with the line The probability of $6$ consecutive flips is given by $sage(100*(.5)^6).n(digits=7)$%. where digits=7 sets the number of significant figures to use in the answer and Sage also can handle numerous probability distributions, see here. Finally, Sage allows you to use Python in your coding. With a CAS, Python, and LaTeX you can do pretty much anything.






                share|improve this answer



























                  2












                  2








                  2







                  A solution using the CAS, Sage, given below. The documentation for sagetex on CTAN is here and an example using Sage/LaTeX/sagetex is here. Sage is not part of the LaTeX distribution so it needs to be installed on your machine or open a free Cocalc account (the easiest way). Here is the code.



                  documentclass[jou,apacite]apa6
                  usepackage[utf8]inputenc
                  usepackageamsmath
                  usepackagesagetex
                  titleTitle of the article
                  authorAuthor Name
                  affiliationAffiliation
                  abstractThis is the abstract.

                  begindocument
                  beginsagesilent
                  output = r"begintable[!htb]"
                  output += r"captionSample table.labeltab1"
                  output += r"begintabularccc"
                  output += r"hline"
                  for i in range(1,13):
                  output += r"%s & %s & %s \"%(i,(100*.5^i).n(digits=7),(100-100*.5^i).n(digits=7))
                  output += r"hline"
                  output += r"endtabular"
                  output += r"endtable"
                  endsagesilent

                  maketitle
                  sectionThis is the heading for the first section of the article.
                  The probability of $6$ consecutive flips is given by $sage(100*(.5)^6).n(digits=7)$%.
                  The probability of $7$ consecutive flips is given by $sage(100*(.5)^7).n(digits=7)$%.

                  Applying this to other values we can create the Table below:
                  Results are presented in Table~reftab1.
                  sagestroutput
                  sectionThis is the heading for the second section of the article.
                  Lorem ipsum.
                  enddocument


                  The output running in Cocalc is shown below:
                  enter image description here
                  In order to create the table with a loop, Sage has to run. When you build your file in Cocalc, LaTeX runs, then Sage, then LaTeX (where the results from the Sage run are inserted). This means in order for the first pass of LaTeX to compile, the table is not there. It gets created as a string in Sage and then inserted for the final LaTeX compilation. sagestr gets string data as opposed to sage for numerical data. Two nice features that you get with Sage: the ability to do calculations on the fly such as with the line The probability of $6$ consecutive flips is given by $sage(100*(.5)^6).n(digits=7)$%. where digits=7 sets the number of significant figures to use in the answer and Sage also can handle numerous probability distributions, see here. Finally, Sage allows you to use Python in your coding. With a CAS, Python, and LaTeX you can do pretty much anything.






                  share|improve this answer















                  A solution using the CAS, Sage, given below. The documentation for sagetex on CTAN is here and an example using Sage/LaTeX/sagetex is here. Sage is not part of the LaTeX distribution so it needs to be installed on your machine or open a free Cocalc account (the easiest way). Here is the code.



                  documentclass[jou,apacite]apa6
                  usepackage[utf8]inputenc
                  usepackageamsmath
                  usepackagesagetex
                  titleTitle of the article
                  authorAuthor Name
                  affiliationAffiliation
                  abstractThis is the abstract.

                  begindocument
                  beginsagesilent
                  output = r"begintable[!htb]"
                  output += r"captionSample table.labeltab1"
                  output += r"begintabularccc"
                  output += r"hline"
                  for i in range(1,13):
                  output += r"%s & %s & %s \"%(i,(100*.5^i).n(digits=7),(100-100*.5^i).n(digits=7))
                  output += r"hline"
                  output += r"endtabular"
                  output += r"endtable"
                  endsagesilent

                  maketitle
                  sectionThis is the heading for the first section of the article.
                  The probability of $6$ consecutive flips is given by $sage(100*(.5)^6).n(digits=7)$%.
                  The probability of $7$ consecutive flips is given by $sage(100*(.5)^7).n(digits=7)$%.

                  Applying this to other values we can create the Table below:
                  Results are presented in Table~reftab1.
                  sagestroutput
                  sectionThis is the heading for the second section of the article.
                  Lorem ipsum.
                  enddocument


                  The output running in Cocalc is shown below:
                  enter image description here
                  In order to create the table with a loop, Sage has to run. When you build your file in Cocalc, LaTeX runs, then Sage, then LaTeX (where the results from the Sage run are inserted). This means in order for the first pass of LaTeX to compile, the table is not there. It gets created as a string in Sage and then inserted for the final LaTeX compilation. sagestr gets string data as opposed to sage for numerical data. Two nice features that you get with Sage: the ability to do calculations on the fly such as with the line The probability of $6$ consecutive flips is given by $sage(100*(.5)^6).n(digits=7)$%. where digits=7 sets the number of significant figures to use in the answer and Sage also can handle numerous probability distributions, see here. Finally, Sage allows you to use Python in your coding. With a CAS, Python, and LaTeX you can do pretty much anything.







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited 2 days ago

























                  answered 2 days ago









                  DJPDJP

                  7,95921732




                  7,95921732



























                      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%2f482495%2fcomputationally-populating-tables-with-probability-data%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

                      getting Checkpoint VPN SSL Network Extender working in the command lineHow to connect to CheckPoint VPN on Ubuntu 18.04LTS?Will the Linux ( red-hat ) Open VPNC Client connect to checkpoint or nortel VPN gateways?VPN client for linux machine + support checkpoint gatewayVPN SSL Network Extender in FirefoxLinux Checkpoint SNX tool configuration issuesCheck Point - Connect under Linux - snx + OTPSNX VPN Ububuntu 18.XXUsing Checkpoint VPN SSL Network Extender CLI with certificateVPN with network manager (nm-applet) is not workingWill the Linux ( red-hat ) Open VPNC Client connect to checkpoint or nortel VPN gateways?VPN client for linux machine + support checkpoint gatewayImport VPN config files to NetworkManager from command lineTrouble connecting to VPN using network-manager, while command line worksStart a VPN connection with PPTP protocol on command linestarting a docker service daemon breaks the vpn networkCan't connect to vpn with Network-managerVPN SSL Network Extender in FirefoxUsing Checkpoint VPN SSL Network Extender CLI with certificate

                      Cannot Extend partition with GParted The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) 2019 Community Moderator Election ResultsCan't increase partition size with GParted?GParted doesn't recognize the unallocated space after my current partitionWhat is the best way to add unallocated space located before to Ubuntu 12.04 partition with GParted live?I can't figure out how to extend my Arch home partition into free spaceGparted Linux Mint 18.1 issueTrying to extend but swap partition is showing as Unknown in Gparted, shows proper from fdiskRearrange partitions in gparted to extend a partitionUnable to extend partition even though unallocated space is next to it using GPartedAllocate free space to root partitiongparted: how to merge unallocated space with a partition

                      Marilyn Monroe Ny fiainany manokana | Jereo koa | Meny fitetezanafanitarana azy.