Authors
Izza Syahri Muharram_220605110073 Latest
20.09.2022
summary(cars) ## speed dist ## Min. : 4.0 Min. : 2.00 ## 1st Qu.:12.0 1st Qu.: 26.00 ## Median :15.0 Median : 36.00 ## Mean :15.4 Mean : 42.98 ## 3rd Qu.:19.0 3rd Qu.: 56.00 ## Max....
600 sym 1 img
Seguros Latest
21.02.2023
R Markdown This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com. When you click the Knit button a document will...
591 sym 1 img
Javier Antonio López Herrera 29
Datos Agrupados Latest
06.09.2022
1 Objetivo Agrupar datos y describir datos visualmente de variables de edades y generos usando función fdt y fdt_cat de la librería fdth. 2 Descripción Se cargan librerías adecuadas de caso Se construyen y simulan datos con dos variables de...
4975 sym R (3385 sym/20 pcs) 5 img
joaquin flores atayde 29
Caso 2. Datos Agrupados Latest
05.09.2022
1 Objetivo Agrupar datos y describir datos visualmente de variables de edades y generos usando función fdt y fdt_cat de la librería fdth. 2 Descripción Se cargan librerías adecuadas de caso. Se contruyen y simulan datos con dos variables de...
5991 sym R (3495 sym/21 pcs) 5 img
Jlok17 29
Homework #1 Bridge Course Latest
22.12.2022
#RBridge Week 1 Assignment #1.Write a loop that calculates 12-factorial factorial <- function(i){ x1=1; for (i in 1:i) { x1 = x1*i } return(x1) } factorial(12) ## [1] 479001600 #Bonus 1 if you wanted to find factorial for 1-12...
360 sym
Marc Paterno 29
Preliminary HEPnOS performance analysis Latest
05.05.2020
Updates This document has been updated to include two runs of the eventselection program over the same data. Read the dataframes Run 1 used 112 nodes for the eventselection program, and 16 nodes running HEPnOS daemon processes. We had 32 targets...
5877 sym R (7254 sym/12 pcs) 17 img
Paul Hiemstra 29
Comparison of ave, ddply and data.table Latest
28.10.2011
This is a copy of a post by me on the R-statistics blog. Fortran and C programmers often say that interpreted languages like R are nice and all, but lack in terms of speed. How fast something works in R greatly depends on how it is implemented,...
2698 sym R (1733 sym/3 pcs) 2 img
Folorunsho Atanda 29
Week 1 Assignment Latest
14.07.2023
#Question 1 factorial <- 1 for (n in 1:12){ factorial <- factorial * n } print(factorial) ## [1] 479001600 sprintf('The roots of %.0fx^2 + %.0fx + %.0f are:', 1, 1, 1) ## [1] "The roots of 1x^2 + 1x + 1 are:" #Question 2 num_vec <-...
47 sym