Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
MmeMarieLouise committed Jan 5, 2021
0 parents commit 52761d3
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# RStudio files
.Rproj.user
13 changes: 13 additions & 0 deletions quarterly_release_y:e_sept_20.Rproj
Original file line number Diff line number Diff line change
@@ -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
Binary file added returns-datasets-sep-2020.xlsx
Binary file not shown.
25 changes: 25 additions & 0 deletions returns_1.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
install.packages("gitignore")
library(gitignore)
gi_fetch_templates("R")


# load tidyverse and it's libraries
library(tidyverse)
library(readxl)
library(dplyr)


# for data cleaning
library(janitor)

# check working directory
getwd()


# check the excel sheet names from excel file
readxl::excel_sheets("/Users/marie-louise/Documents/sites/quarterly_release_y:e_sept_20/returns-datasets-sep-2020.xlsx")

# dataframe_name <- readxl::read_excel(file_path)
# or - readxl::excel_sheets(file_path)

raw_data_1 <- readxl::read_excel()

0 comments on commit 52761d3

Please sign in to comment.