Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
My R Code Practice
#R version 3.3.2 # Create a matrix m1 <- 1:10 matrix(m1) # by default it arranges as ONE column matrix(m1,nrow = 2) # here R chooses to fill the matrix by column; you can choose to fill the matrix by rows as well matrix(m1,byrow = FALSE,nrow = 2) matrix(1:12,byrow = F,ncol = 3) matrix(1:12,byrow = T,nrow = 3)
run
|
edit
|
history
|
help
0
Practice series1(37)
Return the max, min, and zeros of a function y, and plot it.
11-09-2020AproxArco
05-08-2020-Resolução-equaçao
EXP1STATS
matrix
Practice
Functions for partial factorials, factorials, binomial coeffs., & rows of Pascale's Triangle.
This is python
K