My name is Emine Guven. I am an applied mathematician and study quantitative biology. My interests are cellular aging, VEGF receptors clustering, math modeling of biological systems with a broad focus on data analysis and simulations.This site is reserve as a notebook to keep my studies fresh and open to my students and collaborators.
Wednesday, October 24, 2018
learn SQL codecademy.com
We learned 6 commands in SQL today;
A statement is a string of characters that the database recognizes as a valid command.
CREATE TABLE
creates a new table.INSERT INTO
adds a new row to a table.SELECT
queries data from a table.UPDATE
edits a row in a table.ALTER TABLE
changes an existing table.DELETE FROM
deletes rows from a table
Thursday, October 18, 2018
How to crete R Mark Down files in R studio
need to install:
install.package("rmarkdown")
how to render Rmd file through terminal command line after $ssh username
Need to have "pandoc" package on X11 or Linux machines.
$pandoc -v
install.package("rmarkdown")
how to render Rmd file through terminal command line after $ssh username
$ echo "rmarkdown::render('sample.Rmd', clean=TRUE)" | R --slave
$ Rscript -e "rmarkdown::render('sample.Rmd', clean=TRUE)”
Need to have "pandoc" package on X11 or Linux machines.
$pandoc -v
Sunday, October 7, 2018
solving ODEs
A nice recalling examples here:
http://mathinsight.org/ordinary_differential_equation_introduction
http://mathinsight.org/ordinary_differential_equation_introduction
Subscribe to:
Posts (Atom)