Skip to content

Instantly share code, notes, and snippets.

View merRen22's full-sized avatar
:shipit:
Working from home

Renato Mercado merRen22

:shipit:
Working from home
View GitHub Profile
@merRen22
merRen22 / basic_matrix.r
Last active April 19, 2021 03:25
R creating and filling with data a matrix
#basic values of time for matrix
time_study <- c(15,26,30,12,24)
time_read <- c(10,2,23,11,99)
#time matrix creation
time_matrix <- matrix(c(time_study, time_read), nrow = 2, byrow = TRUE)
#nominal values for headings
days <- c("Monday", "Tuesday", "Wednesday", "Thursday", "Friday")
time <- c("study time","read time")
@merRen22
merRen22 / login.css
Last active January 20, 2021 04:13
Sample on how to use css with flask wtf componets (wtf.quick_form)
.btn {
display: block;
width: 100%;
position: relative;
}
.form-group {
text-align: start;
}