Authors
Alec 70
Week 1 Homework - Alec McCabe Latest
21.07.2021
Write a loop that calculates 12! calculate_factorial <- function(value){ ret = 1 if (value == 1){ return(ret) } for (x in 2:value) { ret = ret*x } return(ret) } calculate_factorial(12) ## [1] 479001600 Do it again for fun...
162 sym R (656 sym/8 pcs)
CUNY_SPS_Bridge_R1 Latest
25.07.2021
#CUNY SPS Bridge: R section, Assignment 1 #Name: Chinedu Onyeka #Date: July 24th, 2021 #Question 1: Write a loop that calculates 12 factorial get_factorial <- function(n){ result <- 1 for(i in 1:n){ result = result * i }...
20 sym R (1830 sym/15 pcs)
Steven Mosher 69
SST with Raster. Complete Latest
29.08.2010
Update: new zip, correcting bug found by Steve McIntyre: if(!file.exists(HadSST2ncdf)) downloadHADSST2() if(!file.exists(HadSST2ncdf)) downloadHadSST2() issue pending with another line as well. Checking raster versions. I’ve also, added some...
4081 sym 50 img
Ken Wood 69
Data Science Capstone in R - Week 2 Analysis Latest
05.10.2020
Instructions The goal of this project is to display that we’ve gotten used to working with the data and that we are on track to create your prediction algorithm. This report (to be submitted on R Pubs (http://rpubs.com/)) explains our...
3007 sym R (6124 sym/21 pcs)
Laura P 69
Project 1 Latest
26.09.2022
ds<-readLines("7645617.txt") ds <- ds[1:length(ds)%%3!=1] oddlines<- ds[1:length(ds)%%2==1] evenlines<- ds[1:length(ds)%%2!=1] data<-paste(oddlines, evenlines) writeLines(data,"newds.txt") dataset<-read.table("newds.txt", sep = "|", header =...
11 sym R (8447 sym/8 pcs)
Maëlle Salmon 69
Analyzing #first7jobs tweets with Monkeylearn and R Latest
01.10.2016
Note that this is a repost of my post on Monkeylearn’s blog. Introduction Have you tweeted about your “#firstsevenjobs”? I did! “#firstsevenjobs” and “#first7jobs” tweets initial goal was to provide a short description of the 7...
10166 sym 12 img 3 tbl
None Leon 69
microeoconomics 10.14 Latest
14.05.2021
1.服装商卡尔在一个孤岛上拥有一家大型服装厂。卡尔的工厂是大多数岛民唯一的就业来源,因此卡尔扮演着一个独裁者的角色。服装工人的供给曲线如下所示: \[ l=80 w \]...
5859 sym
NadineBestard 68
Compare published young-old DE from rat and mouse Latest
07.04.2021
Summary I have compared the genes highlighted as deferentially expressed between old and young OPCs from published rat and mouse DE analysis. The rat data-set has been obtain from “Metformin Restores CNS Remyelination Capacity by Rejuvenating...
3662 sym R (4354 sym/34 pcs)
Alexis Mekueko 68
DATA607_Assg1 Latest
09.09.2020
library(tidyverse) library(openintro) Exercise 1 arbuthnot ## # A tibble: 82 x 3 ## year boys girls ## <int> <int> <int> ## 1 1629 5218 4683 ## 2 1630 4858 4457 ## 3 1631 4422 4102 ## 4 1632 4994 4590 ## 5 1633...
8293 sym R (6981 sym/43 pcs) 6 img
Muhammad Amirul muttaqin, Prof. Dr. Suhartono, M.Kom 68
macam macam simbol operator aritmatika Latest
22.09.2021
Lembaga : Universitas Islam Negeri Maulana Malik Ibrahim Malang Jurusan : Tehnik informatika OPERATOR ARITMATIKA operator aritmatika dalam pemrograman adalah bagian dari indikator atau simbol yang menandakan dibutuhnya operasi matematika atau...
732 sym R (423 sym/9 pcs)