How to use GNU Octave instead of Minitab












1















As a university student, we have to solve some problems and class activity using a Windows app called Minitab, while I don't use any other operating system except Linux.



I installed GNU Octave and statistics package, but when I searched for any tutorial or manual I failed to find out how to plot charts like P chart, Z-MR chart, XBar-S, etc. with GNU Octave. I want to know if it's possible to accomplish the same tasks with GNU Octave for statistical analysis and plotting charts?










share|improve this question

























  • Before reviewing this question please hover the mouse over the tags to read the pop-up tag info balloon of each tag.

    – karel
    Dec 9 '18 at 8:51


















1















As a university student, we have to solve some problems and class activity using a Windows app called Minitab, while I don't use any other operating system except Linux.



I installed GNU Octave and statistics package, but when I searched for any tutorial or manual I failed to find out how to plot charts like P chart, Z-MR chart, XBar-S, etc. with GNU Octave. I want to know if it's possible to accomplish the same tasks with GNU Octave for statistical analysis and plotting charts?










share|improve this question

























  • Before reviewing this question please hover the mouse over the tags to read the pop-up tag info balloon of each tag.

    – karel
    Dec 9 '18 at 8:51
















1












1








1








As a university student, we have to solve some problems and class activity using a Windows app called Minitab, while I don't use any other operating system except Linux.



I installed GNU Octave and statistics package, but when I searched for any tutorial or manual I failed to find out how to plot charts like P chart, Z-MR chart, XBar-S, etc. with GNU Octave. I want to know if it's possible to accomplish the same tasks with GNU Octave for statistical analysis and plotting charts?










share|improve this question
















As a university student, we have to solve some problems and class activity using a Windows app called Minitab, while I don't use any other operating system except Linux.



I installed GNU Octave and statistics package, but when I searched for any tutorial or manual I failed to find out how to plot charts like P chart, Z-MR chart, XBar-S, etc. with GNU Octave. I want to know if it's possible to accomplish the same tasks with GNU Octave for statistical analysis and plotting charts?







octave statistical plot






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 9 '18 at 8:59









karel

57.8k12128146




57.8k12128146










asked Dec 9 '18 at 5:38









MirzaMirza

136118




136118













  • Before reviewing this question please hover the mouse over the tags to read the pop-up tag info balloon of each tag.

    – karel
    Dec 9 '18 at 8:51





















  • Before reviewing this question please hover the mouse over the tags to read the pop-up tag info balloon of each tag.

    – karel
    Dec 9 '18 at 8:51



















Before reviewing this question please hover the mouse over the tags to read the pop-up tag info balloon of each tag.

– karel
Dec 9 '18 at 8:51







Before reviewing this question please hover the mouse over the tags to read the pop-up tag info balloon of each tag.

– karel
Dec 9 '18 at 8:51












2 Answers
2






active

oldest

votes


















0














R is a system for statistical computation and graphics. It consists of a language plus a runtime environment with graphics, a debugger, access to certain system functions, and the ability to run programs stored in script files.



The core of R is an interpreted computer language which allows branching and looping as well as modular programming using functions. Additionally, several thousand extension "packages" are available from CRAN, the Comprehensive R Archive Network, many also as Debian packages, named r-cran-<name>. For R an extension (library) R Commander exists, which brings a GUI to perform most things that Minitab is capable of.



To install R and RStudio in all currently supported versions of Ubuntu open the terminal and type:



sudo apt install r-base libopenblas-base libgstreamer-plugins-base0.10-0 libgstreamer0.10-0 libjpeg62       
cd ~/Downloads
wget -c --tries=3 --timeout=120 https://download1.rstudio.org/rstudio-xenial-1.1.419-amd64.deb
sudo apt install ./rstudio-xenial-1.1.379-amd64.deb





share|improve this answer































    0














    I've also done a uni module where Octave was needed (Applied Linear Algebra)
    I am not familiar with minitab but I have also used MATLAB which is basically a proprietary version of Octave. Octave could do anything MATLAB could do with a slightly different syntax. I am thinking minitab may be similar along that situation in comparison.
    I am not sure of the level of complexity of your course...for EG very very basic in stats you can define a matrix by



     a = [0.9, 0.7;                 -define matrix
    0.1, 0.1;
    0.5, 0.4];
    b = [1; 2; 3] -define coefficients


    This should look familiar (if not, oi vey):



    For plotting charts/graphs (2-D) mostly fplot is used..e.g.



    fplot (@cos, [0, 2*pi])
    fplot ("[cos(x), sin(x)]", [0, 2*pi])


    would define the equation the graph uses but they must be continuous.



    These are all very simple expamples so you should read the
    Octave Manual



    Hope this helps =]






    share|improve this answer























      Your Answer








      StackExchange.ready(function() {
      var channelOptions = {
      tags: "".split(" "),
      id: "89"
      };
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function() {
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled) {
      StackExchange.using("snippets", function() {
      createEditor();
      });
      }
      else {
      createEditor();
      }
      });

      function createEditor() {
      StackExchange.prepareEditor({
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader: {
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/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%2faskubuntu.com%2fquestions%2f1099493%2fhow-to-use-gnu-octave-instead-of-minitab%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









      0














      R is a system for statistical computation and graphics. It consists of a language plus a runtime environment with graphics, a debugger, access to certain system functions, and the ability to run programs stored in script files.



      The core of R is an interpreted computer language which allows branching and looping as well as modular programming using functions. Additionally, several thousand extension "packages" are available from CRAN, the Comprehensive R Archive Network, many also as Debian packages, named r-cran-<name>. For R an extension (library) R Commander exists, which brings a GUI to perform most things that Minitab is capable of.



      To install R and RStudio in all currently supported versions of Ubuntu open the terminal and type:



      sudo apt install r-base libopenblas-base libgstreamer-plugins-base0.10-0 libgstreamer0.10-0 libjpeg62       
      cd ~/Downloads
      wget -c --tries=3 --timeout=120 https://download1.rstudio.org/rstudio-xenial-1.1.419-amd64.deb
      sudo apt install ./rstudio-xenial-1.1.379-amd64.deb





      share|improve this answer




























        0














        R is a system for statistical computation and graphics. It consists of a language plus a runtime environment with graphics, a debugger, access to certain system functions, and the ability to run programs stored in script files.



        The core of R is an interpreted computer language which allows branching and looping as well as modular programming using functions. Additionally, several thousand extension "packages" are available from CRAN, the Comprehensive R Archive Network, many also as Debian packages, named r-cran-<name>. For R an extension (library) R Commander exists, which brings a GUI to perform most things that Minitab is capable of.



        To install R and RStudio in all currently supported versions of Ubuntu open the terminal and type:



        sudo apt install r-base libopenblas-base libgstreamer-plugins-base0.10-0 libgstreamer0.10-0 libjpeg62       
        cd ~/Downloads
        wget -c --tries=3 --timeout=120 https://download1.rstudio.org/rstudio-xenial-1.1.419-amd64.deb
        sudo apt install ./rstudio-xenial-1.1.379-amd64.deb





        share|improve this answer


























          0












          0








          0







          R is a system for statistical computation and graphics. It consists of a language plus a runtime environment with graphics, a debugger, access to certain system functions, and the ability to run programs stored in script files.



          The core of R is an interpreted computer language which allows branching and looping as well as modular programming using functions. Additionally, several thousand extension "packages" are available from CRAN, the Comprehensive R Archive Network, many also as Debian packages, named r-cran-<name>. For R an extension (library) R Commander exists, which brings a GUI to perform most things that Minitab is capable of.



          To install R and RStudio in all currently supported versions of Ubuntu open the terminal and type:



          sudo apt install r-base libopenblas-base libgstreamer-plugins-base0.10-0 libgstreamer0.10-0 libjpeg62       
          cd ~/Downloads
          wget -c --tries=3 --timeout=120 https://download1.rstudio.org/rstudio-xenial-1.1.419-amd64.deb
          sudo apt install ./rstudio-xenial-1.1.379-amd64.deb





          share|improve this answer













          R is a system for statistical computation and graphics. It consists of a language plus a runtime environment with graphics, a debugger, access to certain system functions, and the ability to run programs stored in script files.



          The core of R is an interpreted computer language which allows branching and looping as well as modular programming using functions. Additionally, several thousand extension "packages" are available from CRAN, the Comprehensive R Archive Network, many also as Debian packages, named r-cran-<name>. For R an extension (library) R Commander exists, which brings a GUI to perform most things that Minitab is capable of.



          To install R and RStudio in all currently supported versions of Ubuntu open the terminal and type:



          sudo apt install r-base libopenblas-base libgstreamer-plugins-base0.10-0 libgstreamer0.10-0 libjpeg62       
          cd ~/Downloads
          wget -c --tries=3 --timeout=120 https://download1.rstudio.org/rstudio-xenial-1.1.419-amd64.deb
          sudo apt install ./rstudio-xenial-1.1.379-amd64.deb






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Dec 9 '18 at 6:36









          karelkarel

          57.8k12128146




          57.8k12128146

























              0














              I've also done a uni module where Octave was needed (Applied Linear Algebra)
              I am not familiar with minitab but I have also used MATLAB which is basically a proprietary version of Octave. Octave could do anything MATLAB could do with a slightly different syntax. I am thinking minitab may be similar along that situation in comparison.
              I am not sure of the level of complexity of your course...for EG very very basic in stats you can define a matrix by



               a = [0.9, 0.7;                 -define matrix
              0.1, 0.1;
              0.5, 0.4];
              b = [1; 2; 3] -define coefficients


              This should look familiar (if not, oi vey):



              For plotting charts/graphs (2-D) mostly fplot is used..e.g.



              fplot (@cos, [0, 2*pi])
              fplot ("[cos(x), sin(x)]", [0, 2*pi])


              would define the equation the graph uses but they must be continuous.



              These are all very simple expamples so you should read the
              Octave Manual



              Hope this helps =]






              share|improve this answer




























                0














                I've also done a uni module where Octave was needed (Applied Linear Algebra)
                I am not familiar with minitab but I have also used MATLAB which is basically a proprietary version of Octave. Octave could do anything MATLAB could do with a slightly different syntax. I am thinking minitab may be similar along that situation in comparison.
                I am not sure of the level of complexity of your course...for EG very very basic in stats you can define a matrix by



                 a = [0.9, 0.7;                 -define matrix
                0.1, 0.1;
                0.5, 0.4];
                b = [1; 2; 3] -define coefficients


                This should look familiar (if not, oi vey):



                For plotting charts/graphs (2-D) mostly fplot is used..e.g.



                fplot (@cos, [0, 2*pi])
                fplot ("[cos(x), sin(x)]", [0, 2*pi])


                would define the equation the graph uses but they must be continuous.



                These are all very simple expamples so you should read the
                Octave Manual



                Hope this helps =]






                share|improve this answer


























                  0












                  0








                  0







                  I've also done a uni module where Octave was needed (Applied Linear Algebra)
                  I am not familiar with minitab but I have also used MATLAB which is basically a proprietary version of Octave. Octave could do anything MATLAB could do with a slightly different syntax. I am thinking minitab may be similar along that situation in comparison.
                  I am not sure of the level of complexity of your course...for EG very very basic in stats you can define a matrix by



                   a = [0.9, 0.7;                 -define matrix
                  0.1, 0.1;
                  0.5, 0.4];
                  b = [1; 2; 3] -define coefficients


                  This should look familiar (if not, oi vey):



                  For plotting charts/graphs (2-D) mostly fplot is used..e.g.



                  fplot (@cos, [0, 2*pi])
                  fplot ("[cos(x), sin(x)]", [0, 2*pi])


                  would define the equation the graph uses but they must be continuous.



                  These are all very simple expamples so you should read the
                  Octave Manual



                  Hope this helps =]






                  share|improve this answer













                  I've also done a uni module where Octave was needed (Applied Linear Algebra)
                  I am not familiar with minitab but I have also used MATLAB which is basically a proprietary version of Octave. Octave could do anything MATLAB could do with a slightly different syntax. I am thinking minitab may be similar along that situation in comparison.
                  I am not sure of the level of complexity of your course...for EG very very basic in stats you can define a matrix by



                   a = [0.9, 0.7;                 -define matrix
                  0.1, 0.1;
                  0.5, 0.4];
                  b = [1; 2; 3] -define coefficients


                  This should look familiar (if not, oi vey):



                  For plotting charts/graphs (2-D) mostly fplot is used..e.g.



                  fplot (@cos, [0, 2*pi])
                  fplot ("[cos(x), sin(x)]", [0, 2*pi])


                  would define the equation the graph uses but they must be continuous.



                  These are all very simple expamples so you should read the
                  Octave Manual



                  Hope this helps =]







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Dec 9 '18 at 6:56









                  psychonautpsychonaut

                  1




                  1






























                      draft saved

                      draft discarded




















































                      Thanks for contributing an answer to Ask Ubuntu!


                      • 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%2faskubuntu.com%2fquestions%2f1099493%2fhow-to-use-gnu-octave-instead-of-minitab%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

                      How to send String Array data to Server using php in android

                      Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents

                      Is anime1.com a legal site for watching anime?