Difference between revisions of "STEM Majors"

From Computer Science
Jump to: navigation, search
(Added information for Python)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
''Some brief notes, needs to be finished...''
 
 
 
This page contains some advice for non-CS majors who are interested in programming or have some need for programming in their coursework or research.  Note that this advice also applies to CS majors who are working on interdisciplinary projects.
 
This page contains some advice for non-CS majors who are interested in programming or have some need for programming in their coursework or research.  Note that this advice also applies to CS majors who are working on interdisciplinary projects.
  
Line 19: Line 17:
 
== R ==  
 
== R ==  
 
Mention Bioconductor, R information linked from GH 101 page, R for Data Science
 
Mention Bioconductor, R information linked from GH 101 page, R for Data Science
 +
 +
R is a programming language used primarily by mathematicians and data analysts. It's used for statistic computing and graphics, though it can be used for data mining as well. R can be used by [https://cran.r-project.org/ command line] or in third party programs like [https://www.rstudio.com/ RStudio]. A good tutorial of the language can be found at [https://www.tutorialspoint.com/r/index.htm Tutorialspoint].
 +
 +
Other Resources for R:
 +
* [https://www.bioconductor.org/ Bioconductor] (For Computational Biology, Genomes)
 +
* [https://r4ds.had.co.nz/ R for Data Science]
  
 
== Octave ==
 
== Octave ==
 +
Octave is a powerful alternative to MATLAB licensed under the GNU General Public License. It can be downloaded from their [https://www.gnu.org/software/octave/index website]. There is also a [https://wiki.octave.org/Using_Octave tutorial] and [https://octave.org/doc/v6.2.0/index.html#SEC_Contents full documentation] on their site.

Latest revision as of 15:27, 14 May 2021

This page contains some advice for non-CS majors who are interested in programming or have some need for programming in their coursework or research. Note that this advice also applies to CS majors who are working on interdisciplinary projects.

Programming Languages

The most popular (open-source) programming languages for science and mathematics are currently Python and R. Both are also popular currently because they are used a great deal in data science. There are a great many other languages which have been popular in the past or are still useful in particular situations. But if you are starting out fresh it is likely that Python or R would be your best bet for getting started. Another language/tool of note is GNU Octave, which is an open-source free alternative to MATLAB.

Python

For people new to python (or programming in general) there are many tutorials at python.org's Beginner's Tutorial Page. Python scripts are grouped into "packages" for easy distribution. The most used packages for data analysis are listed here as well as some links to places to learn them:

When working with large datasets, the bottleneck is usually around efficiently iterating and structuring through the data. It useful to learn and understand basic Algorithms and Data Structures as well. The information at Tutorialspoint is a good starting point on learning basic Data Structures and Search/Sort algorithms.

R

Mention Bioconductor, R information linked from GH 101 page, R for Data Science

R is a programming language used primarily by mathematicians and data analysts. It's used for statistic computing and graphics, though it can be used for data mining as well. R can be used by command line or in third party programs like RStudio. A good tutorial of the language can be found at Tutorialspoint.

Other Resources for R:

Octave

Octave is a powerful alternative to MATLAB licensed under the GNU General Public License. It can be downloaded from their website. There is also a tutorial and full documentation on their site.