├── .gitignore ├── Base_Graphics ├── customTests.R ├── initLesson.R └── lesson.yaml ├── Basic_Building_Blocks ├── customTests.R └── lesson.yaml ├── Dates_and_Times ├── customTests.R ├── eedata.csv ├── initLesson.R └── lesson.yaml ├── Docker └── Dockerfile ├── Functions ├── customTests.R ├── initLesson.R ├── lesson.yaml └── scripts │ ├── bin_op.R │ ├── boring_function-correct.R │ ├── boring_function.R │ ├── evaluate.R │ ├── mad_libs.R │ ├── my_mean.R │ ├── remainder.R │ └── telegram.R ├── LICENSE ├── Logic ├── customTests.R └── lesson.yaml ├── Looking_at_Data ├── customTests.R ├── initLesson.R ├── lesson.yaml └── plant-data.txt ├── MANIFEST ├── Matrices_and_Data_Frames ├── customTests.R ├── initLesson.R └── lesson.yaml ├── Missing_Values ├── customTests.R ├── initLesson.R └── lesson.yaml ├── Programando_en_R.Rproj ├── README.md ├── Sequences_of_Numbers ├── customTests.R └── lesson.yaml ├── Simulation ├── customTests.R ├── initLesson.R └── lesson.yaml ├── Subsetting_Vectors ├── customTests.R ├── initLesson.R └── lesson.yaml ├── Vectors ├── customTests.R └── lesson.yaml ├── Workspace_and_Files └── lesson.yaml ├── instalar_curso.R ├── lapply_and_sapply ├── customTests.R ├── flag.data.txt ├── flag.names.txt ├── initLesson.R └── lesson.yaml └── vapply_and_tapply ├── customTests.R ├── initLesson.R └── lesson.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /Base_Graphics/customTests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Base_Graphics/customTests.R -------------------------------------------------------------------------------- /Base_Graphics/initLesson.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Base_Graphics/initLesson.R -------------------------------------------------------------------------------- /Base_Graphics/lesson.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Base_Graphics/lesson.yaml -------------------------------------------------------------------------------- /Basic_Building_Blocks/customTests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Basic_Building_Blocks/customTests.R -------------------------------------------------------------------------------- /Basic_Building_Blocks/lesson.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Basic_Building_Blocks/lesson.yaml -------------------------------------------------------------------------------- /Dates_and_Times/customTests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Dates_and_Times/customTests.R -------------------------------------------------------------------------------- /Dates_and_Times/eedata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Dates_and_Times/eedata.csv -------------------------------------------------------------------------------- /Dates_and_Times/initLesson.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Dates_and_Times/initLesson.R -------------------------------------------------------------------------------- /Dates_and_Times/lesson.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Dates_and_Times/lesson.yaml -------------------------------------------------------------------------------- /Docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Docker/Dockerfile -------------------------------------------------------------------------------- /Functions/customTests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Functions/customTests.R -------------------------------------------------------------------------------- /Functions/initLesson.R: -------------------------------------------------------------------------------- 1 | # Put initialization code in this file. 2 | -------------------------------------------------------------------------------- /Functions/lesson.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Functions/lesson.yaml -------------------------------------------------------------------------------- /Functions/scripts/bin_op.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Functions/scripts/bin_op.R -------------------------------------------------------------------------------- /Functions/scripts/boring_function-correct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Functions/scripts/boring_function-correct.R -------------------------------------------------------------------------------- /Functions/scripts/boring_function.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Functions/scripts/boring_function.R -------------------------------------------------------------------------------- /Functions/scripts/evaluate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Functions/scripts/evaluate.R -------------------------------------------------------------------------------- /Functions/scripts/mad_libs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Functions/scripts/mad_libs.R -------------------------------------------------------------------------------- /Functions/scripts/my_mean.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Functions/scripts/my_mean.R -------------------------------------------------------------------------------- /Functions/scripts/remainder.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Functions/scripts/remainder.R -------------------------------------------------------------------------------- /Functions/scripts/telegram.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Functions/scripts/telegram.R -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/LICENSE -------------------------------------------------------------------------------- /Logic/customTests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Logic/customTests.R -------------------------------------------------------------------------------- /Logic/lesson.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Logic/lesson.yaml -------------------------------------------------------------------------------- /Looking_at_Data/customTests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Looking_at_Data/customTests.R -------------------------------------------------------------------------------- /Looking_at_Data/initLesson.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Looking_at_Data/initLesson.R -------------------------------------------------------------------------------- /Looking_at_Data/lesson.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Looking_at_Data/lesson.yaml -------------------------------------------------------------------------------- /Looking_at_Data/plant-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Looking_at_Data/plant-data.txt -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/MANIFEST -------------------------------------------------------------------------------- /Matrices_and_Data_Frames/customTests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Matrices_and_Data_Frames/customTests.R -------------------------------------------------------------------------------- /Matrices_and_Data_Frames/initLesson.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Matrices_and_Data_Frames/initLesson.R -------------------------------------------------------------------------------- /Matrices_and_Data_Frames/lesson.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Matrices_and_Data_Frames/lesson.yaml -------------------------------------------------------------------------------- /Missing_Values/customTests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Missing_Values/customTests.R -------------------------------------------------------------------------------- /Missing_Values/initLesson.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Missing_Values/initLesson.R -------------------------------------------------------------------------------- /Missing_Values/lesson.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Missing_Values/lesson.yaml -------------------------------------------------------------------------------- /Programando_en_R.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Programando_en_R.Rproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/README.md -------------------------------------------------------------------------------- /Sequences_of_Numbers/customTests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Sequences_of_Numbers/customTests.R -------------------------------------------------------------------------------- /Sequences_of_Numbers/lesson.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Sequences_of_Numbers/lesson.yaml -------------------------------------------------------------------------------- /Simulation/customTests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Simulation/customTests.R -------------------------------------------------------------------------------- /Simulation/initLesson.R: -------------------------------------------------------------------------------- 1 | # Put initialization code in this file. 2 | -------------------------------------------------------------------------------- /Simulation/lesson.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Simulation/lesson.yaml -------------------------------------------------------------------------------- /Subsetting_Vectors/customTests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Subsetting_Vectors/customTests.R -------------------------------------------------------------------------------- /Subsetting_Vectors/initLesson.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Subsetting_Vectors/initLesson.R -------------------------------------------------------------------------------- /Subsetting_Vectors/lesson.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Subsetting_Vectors/lesson.yaml -------------------------------------------------------------------------------- /Vectors/customTests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Vectors/customTests.R -------------------------------------------------------------------------------- /Vectors/lesson.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Vectors/lesson.yaml -------------------------------------------------------------------------------- /Workspace_and_Files/lesson.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/Workspace_and_Files/lesson.yaml -------------------------------------------------------------------------------- /instalar_curso.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/instalar_curso.R -------------------------------------------------------------------------------- /lapply_and_sapply/customTests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/lapply_and_sapply/customTests.R -------------------------------------------------------------------------------- /lapply_and_sapply/flag.data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/lapply_and_sapply/flag.data.txt -------------------------------------------------------------------------------- /lapply_and_sapply/flag.names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/lapply_and_sapply/flag.names.txt -------------------------------------------------------------------------------- /lapply_and_sapply/initLesson.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/lapply_and_sapply/initLesson.R -------------------------------------------------------------------------------- /lapply_and_sapply/lesson.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/lapply_and_sapply/lesson.yaml -------------------------------------------------------------------------------- /vapply_and_tapply/customTests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/vapply_and_tapply/customTests.R -------------------------------------------------------------------------------- /vapply_and_tapply/initLesson.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/vapply_and_tapply/initLesson.R -------------------------------------------------------------------------------- /vapply_and_tapply/lesson.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josersosa/Programando_en_R/HEAD/vapply_and_tapply/lesson.yaml --------------------------------------------------------------------------------