Authors

Marisol Ramirez Garcia 26

Importar datos de personas URL Latest

07.09.2021

Objetivo Importar datos de personas desde una direccion URL Descripcion Leer datos con la funcion read.csv () del archivo personas.csv. El archivo se encuentra en; https://raw.githubusercontent.com/rpizarrog/datos/main/personas.csv. Los datos se...

393 sym R (1581 sym/3 pcs)

Mariana Ulloa - A01253076 26

Document Latest

05.09.2022

Símbolos ^ ~ Asignación de Variables x <- 3 y <- 2 Impresión de Resultados x ## [1] 3 y ## [1] 2 Operaciones Aritméticas suma <- x+y suma ## [1] 5 resta <- x-y resta ## [1] 1 multiplicacion <- x*y multiplicacion ## [1] 6 division...

1133 sym 2 img

usuario 26

U1A1 Latest

29.01.2021

3+2 ## [1] 5 3-2 ## [1] 1 4-4 ## [1] 0 3*2 ## [1] 6 4*5 ## [1] 20 10/2 ## [1] 5 3^2 ## [1] 9 3^3 ## [1] 27 3^7 ## [1] 2187 2^(-3) ## [1] 0.125 100^(1/2) ## [1] 10 sqrt(100) ## [1] 10 pi ## [1] 3.141593 exp(1) ## [1] 2.718282 log(exp(1)) ## [1] 1...

46 sym R (303 sym/40 pcs)

Irvin Abraham Alcala Chairez 26

Datos de personas Latest

07.09.2021

Objetivo Importar datos de personas URL Descripción Leer datos con la función read.csv () del archivo que se encuentra en: https://raw.githubusercontent.com/rpizarrog/datos/main/personas.csv. Los datos se mostraran en pantalla utilizando una...

363 sym R (1575 sym/3 pcs)

Li-Hsin Chien 26

Survey Sampling-Chapter 3.4-Sep, 2022 Latest

28.09.2022

1. Read data from .csv setwd("D:\\course\\111-1\\Survey Sampling\\Rnote\\Rpub") # 設定路徑 getwd() #取得目前路徑 ## [1] "D:/course/111-1/Survey Sampling/Rnote/Rpub" data <- read.csv("mammals.csv") head(data) # print the first 8 rows...

833 sym 9 img

Seguros Latest

21.02.2023

Importar la base de datos # file.choose() bd <-read.csv("C:\\Users\\lesda\\OneDrive\\Documentos\\Manipulación de datos\\seguros.csv") Entender la base de datos summary(bd) ## ClaimID TotalPaid TotalReserves TotalRecovery...

69 sym R (6001 sym/10 pcs)

Lee Pang 26

One app, three languages Latest

13.04.2012

This past week at work I had the opportunity to code the same algorithm using each of the three scientific programming/scripting languages I’m familiar with:MatlabPythonRThe list above is the order that the (re)-coding was done and...

5079 sym

klgriffen96 26

Kayleah_Griffen_Bridge_R_HW_1 Latest

26.12.2022

Challenge 1 Write a loop that calculates 12-factorial x <- 12 f <- 1 for (i in 1:x){ f <- f*i } sprintf("My factorial: %d , Built in factorial: %d", f,factorial(x)) ## [1] "My factorial: 479001600 , Built in factorial: 479001600" Challenge...

346 sym

Khyati Naik 26

SQL connection in R Latest

11.09.2022

Load required packages library(tidyverse) library(kableExtra) library(RMySQL) library(RODBC) Connect to MYSQL movies schema sql_conn <- dbConnect(MySQL(), user= usr, password = pwd, dbname='movies', host='localhost') Please click here to...

2029 sym R (2020 sym/20 pcs) 1 img

Jesus Manuel Aldana Reyes 26

Importar datos de personas URL Latest

07.09.2021

Objetivo Importar datos de personas desde una direccion URL Descripcion Leer datos con la funcion read.csv() del archivo personas.csv. El archivo se encuentra en:https://github.com/rpizarrog/datos/blob/main/personas.csv. Los datos se mostraran en...

383 sym R (1576 sym/3 pcs)