preapring first submission

This commit is contained in:
Christopher Sanden
2026-01-22 22:10:31 +01:00
parent b46b3ea791
commit e971c07034
5 changed files with 30 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
.Rproj.user
.Rhistory
.RData
.Ruserdata

13
Oblig1/Oblig1.Rproj Normal file
View File

@@ -0,0 +1,13 @@
Version: 1.0
RestoreWorkspace: Default
SaveWorkspace: Default
AlwaysSaveHistory: Default
EnableCodeIndexing: Yes
UseSpacesForTab: Yes
NumSpacesForTab: 2
Encoding: UTF-8
RnwWeave: Sweave
LaTeX: pdfLaTeX

13
Oblig1/Sigmenn.R Normal file
View File

@@ -0,0 +1,13 @@
library(readxl)
b1 <- read_excel("Book1.xlsx")
list1 = c(b1$Entry)
list2 = c(b1$Data)
mean.default(list1)
mean(list2)
summary(b1)
BookLaban <- read_excel("Laban_raw_XY.xlsx")
View(BookLaban)