generated from Open-Science-Community-Saudi-Arabia/Template
-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Studying the course and solving all exercises #27
Open
OmarBinSaad
wants to merge
44
commits into
BatoolMM:main
Choose a base branch
from
OmarBinSaad:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
44 commits
Select commit
Hold shift + click to select a range
bf590db
Update README.md
OmarBinSaad a037657
explane and save all the code in file name: EveryThingInTheCourse.
OmarBinSaad c2c6539
Write a new codes.
OmarBinSaad 15e091d
add more code.
OmarBinSaad f4bc93c
code
OmarBinSaad d5378d1
info
OmarBinSaad 3f60b12
info.
OmarBinSaad 213df50
plotly.ggplot
OmarBinSaad b643bb8
Info
OmarBinSaad 4f111d9
info
OmarBinSaad 5aee4b2
code + image.
OmarBinSaad 3ccd8cc
How to save data, adding new dataset.
OmarBinSaad d816368
chang saving files code to the best practice code.
OmarBinSaad dd1d35d
change YAML theme and add info about it, fixing errors in Knit, addi…
OmarBinSaad 7318dd9
.
OmarBinSaad c7d7679
prettydoc library.
OmarBinSaad 5210e67
More info.
OmarBinSaad 227f890
.
OmarBinSaad 34986b1
Initial commit
OmarBinSaad c3b09ff
Distill informationn.
OmarBinSaad 16d17a5
files new locate
OmarBinSaad 2774180
info
OmarBinSaad 66d1bc3
info.
OmarBinSaad 5006034
renv library.
OmarBinSaad 64afadb
###pivot longer and wider.
OmarBinSaad 02cd563
Training for pivot with Batool data.
OmarBinSaad 8cc423e
info.
OmarBinSaad 1fb0277
info.
OmarBinSaad 5e77c81
Delete everyThingInTheCourse.docx
OmarBinSaad f894da2
Delete everyThingInTheCourse.html
OmarBinSaad 3019c96
Delete everyThingInTheCourse.Rmd
OmarBinSaad 1165b88
Delete everyThingInTheCourse.log
OmarBinSaad e62970c
Delete everyThingInTheCourse.tex
OmarBinSaad f9dcad1
Creat summary for librarys.
OmarBinSaad 714dda1
Summary.rmd
OmarBinSaad 1b950bd
gitignor test
OmarBinSaad 9aaea68
Upload summary
OmarBinSaad bf9c4d4
Summary upload.
OmarBinSaad b79ff02
test
OmarBinSaad 0804705
test
OmarBinSaad 08dc3a6
Upload Sammary for the packages.
OmarBinSaad 4e72af3
Delete Distill_blog/Distill_Blog directory
OmarBinSaad 3771f7e
Delete unnecessary documents
OmarBinSaad 33228dc
Delete unnecessary files.
OmarBinSaad File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,3 +37,7 @@ vignettes/*.pdf | |
|
||
# R Environment Variables | ||
.Renviron | ||
|
||
.everyThingInTheCourse | ||
.gitignore | ||
|
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.Rproj.user | ||
.Rhistory | ||
.Rdata | ||
.httr-oauth | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
library_name,library_function,code_exampile,library_documentation | ||
tidyverse,collection of R packages designed for data science,read_csv(),https://www.tidyverse.org/packages/ | ||
tidyverse(tidyr),provides a set of functions that help you get to tidy data,tidyr::pivot_longer(),https://www.rdocumentation.org/packages/tidyr/versions/1.2.1 | ||
tidyverse(ggplot2),produce the plots,"ggplot(Datafile, aes(x=no_of_member, y=no_of_member))+ geom_point()",https://ggplot2.tidyverse.org/reference/ | ||
here, enable easy file referencing in project-oriented workflows,setwd(),https://here.r-lib.org/ | ||
plotly,creating interactive web-based graphs,plotly(graph_name),https://plotly.com/r/ | ||
prettydoc,Creating tiny yet beautiful documents and vignettes from R Markdown,"prettydoc::html_pretty: | ||
theme: cayman | ||
highlight: github",https://prettydoc.statr.me/ | ||
ymlthis,"help you write YAML metadata for R Markdown documents and related tools like blogdown, bookdown, and pkgdown","author: [email protected] | ||
date: '`r format(Sys.Date())`' | ||
title: Untitled | ||
output: html_document | ||
description: This YAML for explination purpose for DR.Batool course | ||
fontsize: 12pt",https://pyyaml.org/wiki/PyYAMLDocumentation | ||
usethis,facilitates interactive workflows for R project creation and development,usethis::browse_github(),https://usethis.r-lib.org/ | ||
devtools,make package development easier by providing R functions that simplify and expedite common tasks,devtools::github_pull(),https://devtools.r-lib.org/ | ||
roxygen2,to make documenting your code as easy as possible,"roxygen2::init() | ||
",https://cran.r-project.org/web/packages/roxygen2/vignettes/roxygen2.html | ||
janitor,examining and cleaning dirty data,"janitor::clean_names() | ||
",https://www.rdocumentation.org/packages/janitor/versions/2.1.0 | ||
renv,dependency manager,renv::snapshot(),https://rstudio.github.io/renv/articles/renv.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
--- | ||
title: "Summary" | ||
output: html_document | ||
date: "2023-01-06" | ||
--- | ||
|
||
# Call the library we need | ||
```{r} | ||
library(tidyverse) | ||
library(here) | ||
``` | ||
|
||
# Input data in data frame. | ||
```{r} | ||
Final<- data.frame( | ||
library_name = c("tidyverse","tidyverse(tidyr)","tidyverse(ggplot2)","here","plotly","prettydoc","ymlthis","usethis","devtools" | ||
|
||
,"roxygen2","janitor","renv"), | ||
|
||
|
||
|
||
library_function = c("collection of R packages designed for data science","provides a set of functions that help you get to tidy data","produce the plots"," enable easy file referencing in project-oriented workflows","creating interactive web-based graphs" | ||
,"Creating tiny yet beautiful documents and vignettes from R Markdown" | ||
|
||
,"help you write YAML metadata for R Markdown documents and related tools like blogdown, bookdown, and pkgdown","facilitates interactive workflows for R project creation and development", | ||
|
||
"make package development easier by providing R functions that simplify and expedite common tasks","to make documenting your code as easy as possible","examining and cleaning dirty data","dependency manager"), | ||
|
||
|
||
code_exampile = c("read_csv()","tidyr::pivot_longer()","ggplot(Datafile, aes(x=no_of_member, y=no_of_member))+ geom_point()","setwd()","plotly(graph_name)","prettydoc::html_pretty: | ||
theme: cayman | ||
highlight: github","author: [email protected] | ||
date: '`r format(Sys.Date())`' | ||
title: Untitled | ||
output: html_document | ||
description: This YAML for explination purpose for DR.Batool course | ||
fontsize: 12pt","usethis::browse_github()","devtools::github_pull()","roxygen2::init() | ||
" | ||
,"janitor::clean_names() | ||
","renv::snapshot()"), | ||
|
||
|
||
library_documentation = c("https://www.tidyverse.org/packages/","https://www.rdocumentation.org/packages/tidyr/versions/1.2.1","https://ggplot2.tidyverse.org/reference/", "https://here.r-lib.org/","https://plotly.com/r/","https://prettydoc.statr.me/","https://pyyaml.org/wiki/PyYAMLDocumentation","https://usethis.r-lib.org/","https://devtools.r-lib.org/","https://cran.r-project.org/web/packages/roxygen2/vignettes/roxygen2.html","https://www.rdocumentation.org/packages/janitor/versions/2.1.0","https://rstudio.github.io/renv/articles/renv.html") | ||
) | ||
``` | ||
#Save | ||
```{r} | ||
write_csv(Final,here("Summary_omar/Output","Lib.csv")) | ||
View(Final) | ||
``` | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like this summary, thank you for adding it!