├── .RData ├── .Rhistory ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── main.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Voronoi_map_of_europe.R ├── figures ├── Collatz_Conjecture.R ├── Logo_with_predicition_function.png ├── QRCode_animation.gif ├── UURlogo.jpg ├── doppler_shift.R ├── entropy_tweet_visualization.png └── fermi_calculator.R ├── functions ├── .RData ├── .Rhistory ├── ASCII_image.R ├── Absurd_Converter.R ├── AnalogClock.R ├── Animate_dataset.R ├── AnimatingProbabilityPlots.R ├── AnscombeQuartet.R ├── Benchmark_test.R ├── BigDigitalClock.R ├── Bionic_Reading.R ├── BrierScore.R ├── Call_StatsfunR.R ├── Catalan_number.R ├── Chicken_egg_problem.R ├── Cognitive Bias.R ├── ColorfulPlot.R ├── Concurrency_simulations.R ├── Convert_text_to_numbers.R ├── Creating_QR_code.R ├── DataFrameMaker.R ├── Dataframe_to_markdown.R ├── DrawCalendar.R ├── DrawFunctionCodeOnConsole.R ├── DrawLetter.R ├── Drawing_Recursions.R ├── DynamicVariableInString.R ├── Dynamic_R.R ├── Eight_R_Tidyverse_tips_for_better_data_engineering.R ├── EncryptText.R ├── ExceptionHandling.R ├── Falling_snow.R ├── Find_substring_in_Pi.r ├── FindingMaximumOfSubarrays.R ├── Flakes.R ├── FolderTreemap.R ├── FourInARow.R ├── Four_Fours.R ├── Fractal_of_productivity.r ├── Friday13.R ├── FromSQLtodplyr.R ├── FunctionNames.R ├── FunctionTwist.R ├── GARCH.R ├── GenerateCalculator.R ├── GenerateCalculatorCode.R ├── GenerateQRCode.R ├── Generate_data_with_correlations.R ├── GeneratingCookingRecipes.R ├── Generating_image.R ├── Github_HeatMap.R ├── Goldbach_conjecture.R ├── HelloRversion.R ├── HelloRversion_HelperFile.R ├── InteractiveVoronoiGraphGenerator.R ├── IsDatasetSame.R ├── IsItFullMoon.R ├── IsItRaining.R ├── KadaneAlgorithm.R ├── Knapsack.R ├── L-Systems.R ├── L-systems2.R ├── LLM.R ├── LearningIrregularVerbs.R ├── LetterFrequencyNumbers.R ├── Leveshtein.R ├── List_performances.R ├── LoremIpsum.R ├── MakingScatterPlotFromImage.R ├── MandelbrotSet.R ├── Markov_babbler.R ├── Maslow_needs.r ├── Maslow_needs_2.r ├── MastermindGame.R ├── MergeR_SQLJoin.R ├── MicrosoftLogo.R ├── MixedCases.R ├── NumberCountdownGame.R ├── PackageFrequencies.R ├── Pareidolia_calendar.R ├── Pipe4ggplot2.R ├── Plot_showcase.R ├── Plotting_photos.R ├── PsychedelicSquareRoot.R ├── QR-Code_time.R ├── R-squared.R ├── RJobTitleGenerator.R ├── R_dataFrame_to_Python_Dataframe.R ├── R_fibonacci_benchmarks.R ├── Random_image_stopifnot.R ├── ReverseInteger.R ├── RockPaperScissors.R ├── SQL_R.R ├── SelfCommit.R ├── ShortenURL.R ├── SimpleCardGame.R ├── SmallMultipleGraphs.R ├── Spiral_Matrix.R ├── Stats_fun.R ├── TSQL_2048.sql ├── TryCatch_errorHandling.R ├── TwoSum_CanSum.R ├── UselessFun_API.R ├── UselessSort.R ├── Useless_API.R ├── Useless_tetris.r ├── ValentinePoem.R ├── Vanishing_sentence.R ├── Variables_loop_plot.R ├── WackyPasswordGenerator.R ├── Weierstrass_function.R ├── WordScrambler.R ├── YearProgress.R ├── Yet_another_Fractal.r ├── all_time_useless.R ├── apply.R ├── binary_octal_decimal_conversion.R ├── climate_spiral.R ├── collatz_function.R ├── collatz_in_Every_day_life.r ├── con-joint.r ├── confuser_animation.gif ├── confuser_report.md ├── custom_pallete.R ├── digitalClock.R ├── distro_animation.R ├── dplyrAhaMoments.R ├── entropy_meter.R ├── fireworks.R ├── fourier_selfie.r ├── fun_in_fun.R ├── ggplot_tornado.R ├── greedy_TSP.R ├── happyDino_head.png ├── happy_dino.R ├── image_with_image.R ├── install_packages_requirements.R ├── iris_py.py ├── knapsack_v2.R ├── mathart.R ├── multiplication_table.R ├── one-line-selfie.r ├── pretty_dataframe_definitions.R ├── requirements.txt ├── reverse_hello_world.R ├── schedule_builder.R ├── signature.R ├── t-test_tantrum.r ├── twin_dragon_fractal.R ├── useless house.R ├── useless_pong.r ├── vanishing_sentence.gif └── while_true_function.R └── image ├── Plot_theme_ggplot2.png ├── amazonLogo.jpg ├── anim_decibel.gif ├── appleLogo.jpg ├── geniLogo.jpg ├── ljubljana.jpg ├── ljubljana2.jpg ├── myiriscompany.png ├── nbalogo.jpg ├── nikeLogo.jpg ├── sparkLogo.jpg └── windowsLogo.jpg /.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/.RData -------------------------------------------------------------------------------- /.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/.Rhistory -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/README.md -------------------------------------------------------------------------------- /Voronoi_map_of_europe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/Voronoi_map_of_europe.R -------------------------------------------------------------------------------- /figures/Collatz_Conjecture.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/figures/Collatz_Conjecture.R -------------------------------------------------------------------------------- /figures/Logo_with_predicition_function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/figures/Logo_with_predicition_function.png -------------------------------------------------------------------------------- /figures/QRCode_animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/figures/QRCode_animation.gif -------------------------------------------------------------------------------- /figures/UURlogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/figures/UURlogo.jpg -------------------------------------------------------------------------------- /figures/doppler_shift.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/figures/doppler_shift.R -------------------------------------------------------------------------------- /figures/entropy_tweet_visualization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/figures/entropy_tweet_visualization.png -------------------------------------------------------------------------------- /figures/fermi_calculator.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/figures/fermi_calculator.R -------------------------------------------------------------------------------- /functions/.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/.RData -------------------------------------------------------------------------------- /functions/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/.Rhistory -------------------------------------------------------------------------------- /functions/ASCII_image.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/ASCII_image.R -------------------------------------------------------------------------------- /functions/Absurd_Converter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Absurd_Converter.R -------------------------------------------------------------------------------- /functions/AnalogClock.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/AnalogClock.R -------------------------------------------------------------------------------- /functions/Animate_dataset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Animate_dataset.R -------------------------------------------------------------------------------- /functions/AnimatingProbabilityPlots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/AnimatingProbabilityPlots.R -------------------------------------------------------------------------------- /functions/AnscombeQuartet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/AnscombeQuartet.R -------------------------------------------------------------------------------- /functions/Benchmark_test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Benchmark_test.R -------------------------------------------------------------------------------- /functions/BigDigitalClock.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/BigDigitalClock.R -------------------------------------------------------------------------------- /functions/Bionic_Reading.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Bionic_Reading.R -------------------------------------------------------------------------------- /functions/BrierScore.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/BrierScore.R -------------------------------------------------------------------------------- /functions/Call_StatsfunR.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Call_StatsfunR.R -------------------------------------------------------------------------------- /functions/Catalan_number.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Catalan_number.R -------------------------------------------------------------------------------- /functions/Chicken_egg_problem.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Chicken_egg_problem.R -------------------------------------------------------------------------------- /functions/Cognitive Bias.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Cognitive Bias.R -------------------------------------------------------------------------------- /functions/ColorfulPlot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/ColorfulPlot.R -------------------------------------------------------------------------------- /functions/Concurrency_simulations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Concurrency_simulations.R -------------------------------------------------------------------------------- /functions/Convert_text_to_numbers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Convert_text_to_numbers.R -------------------------------------------------------------------------------- /functions/Creating_QR_code.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Creating_QR_code.R -------------------------------------------------------------------------------- /functions/DataFrameMaker.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/DataFrameMaker.R -------------------------------------------------------------------------------- /functions/Dataframe_to_markdown.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Dataframe_to_markdown.R -------------------------------------------------------------------------------- /functions/DrawCalendar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/DrawCalendar.R -------------------------------------------------------------------------------- /functions/DrawFunctionCodeOnConsole.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/DrawFunctionCodeOnConsole.R -------------------------------------------------------------------------------- /functions/DrawLetter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/DrawLetter.R -------------------------------------------------------------------------------- /functions/Drawing_Recursions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Drawing_Recursions.R -------------------------------------------------------------------------------- /functions/DynamicVariableInString.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/DynamicVariableInString.R -------------------------------------------------------------------------------- /functions/Dynamic_R.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Dynamic_R.R -------------------------------------------------------------------------------- /functions/Eight_R_Tidyverse_tips_for_better_data_engineering.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Eight_R_Tidyverse_tips_for_better_data_engineering.R -------------------------------------------------------------------------------- /functions/EncryptText.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/EncryptText.R -------------------------------------------------------------------------------- /functions/ExceptionHandling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/ExceptionHandling.R -------------------------------------------------------------------------------- /functions/Falling_snow.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Falling_snow.R -------------------------------------------------------------------------------- /functions/Find_substring_in_Pi.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Find_substring_in_Pi.r -------------------------------------------------------------------------------- /functions/FindingMaximumOfSubarrays.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/FindingMaximumOfSubarrays.R -------------------------------------------------------------------------------- /functions/Flakes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Flakes.R -------------------------------------------------------------------------------- /functions/FolderTreemap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/FolderTreemap.R -------------------------------------------------------------------------------- /functions/FourInARow.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/FourInARow.R -------------------------------------------------------------------------------- /functions/Four_Fours.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Four_Fours.R -------------------------------------------------------------------------------- /functions/Fractal_of_productivity.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Fractal_of_productivity.r -------------------------------------------------------------------------------- /functions/Friday13.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Friday13.R -------------------------------------------------------------------------------- /functions/FromSQLtodplyr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/FromSQLtodplyr.R -------------------------------------------------------------------------------- /functions/FunctionNames.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/FunctionNames.R -------------------------------------------------------------------------------- /functions/FunctionTwist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/FunctionTwist.R -------------------------------------------------------------------------------- /functions/GARCH.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/GARCH.R -------------------------------------------------------------------------------- /functions/GenerateCalculator.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/GenerateCalculator.R -------------------------------------------------------------------------------- /functions/GenerateCalculatorCode.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/GenerateCalculatorCode.R -------------------------------------------------------------------------------- /functions/GenerateQRCode.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/GenerateQRCode.R -------------------------------------------------------------------------------- /functions/Generate_data_with_correlations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Generate_data_with_correlations.R -------------------------------------------------------------------------------- /functions/GeneratingCookingRecipes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/GeneratingCookingRecipes.R -------------------------------------------------------------------------------- /functions/Generating_image.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Generating_image.R -------------------------------------------------------------------------------- /functions/Github_HeatMap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Github_HeatMap.R -------------------------------------------------------------------------------- /functions/Goldbach_conjecture.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Goldbach_conjecture.R -------------------------------------------------------------------------------- /functions/HelloRversion.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/HelloRversion.R -------------------------------------------------------------------------------- /functions/HelloRversion_HelperFile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/HelloRversion_HelperFile.R -------------------------------------------------------------------------------- /functions/InteractiveVoronoiGraphGenerator.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/InteractiveVoronoiGraphGenerator.R -------------------------------------------------------------------------------- /functions/IsDatasetSame.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/IsDatasetSame.R -------------------------------------------------------------------------------- /functions/IsItFullMoon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/IsItFullMoon.R -------------------------------------------------------------------------------- /functions/IsItRaining.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/IsItRaining.R -------------------------------------------------------------------------------- /functions/KadaneAlgorithm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/KadaneAlgorithm.R -------------------------------------------------------------------------------- /functions/Knapsack.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Knapsack.R -------------------------------------------------------------------------------- /functions/L-Systems.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/L-Systems.R -------------------------------------------------------------------------------- /functions/L-systems2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/L-systems2.R -------------------------------------------------------------------------------- /functions/LLM.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/LLM.R -------------------------------------------------------------------------------- /functions/LearningIrregularVerbs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/LearningIrregularVerbs.R -------------------------------------------------------------------------------- /functions/LetterFrequencyNumbers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/LetterFrequencyNumbers.R -------------------------------------------------------------------------------- /functions/Leveshtein.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Leveshtein.R -------------------------------------------------------------------------------- /functions/List_performances.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/List_performances.R -------------------------------------------------------------------------------- /functions/LoremIpsum.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/LoremIpsum.R -------------------------------------------------------------------------------- /functions/MakingScatterPlotFromImage.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/MakingScatterPlotFromImage.R -------------------------------------------------------------------------------- /functions/MandelbrotSet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/MandelbrotSet.R -------------------------------------------------------------------------------- /functions/Markov_babbler.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Markov_babbler.R -------------------------------------------------------------------------------- /functions/Maslow_needs.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Maslow_needs.r -------------------------------------------------------------------------------- /functions/Maslow_needs_2.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Maslow_needs_2.r -------------------------------------------------------------------------------- /functions/MastermindGame.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/MastermindGame.R -------------------------------------------------------------------------------- /functions/MergeR_SQLJoin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/MergeR_SQLJoin.R -------------------------------------------------------------------------------- /functions/MicrosoftLogo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/MicrosoftLogo.R -------------------------------------------------------------------------------- /functions/MixedCases.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/MixedCases.R -------------------------------------------------------------------------------- /functions/NumberCountdownGame.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/NumberCountdownGame.R -------------------------------------------------------------------------------- /functions/PackageFrequencies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/PackageFrequencies.R -------------------------------------------------------------------------------- /functions/Pareidolia_calendar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Pareidolia_calendar.R -------------------------------------------------------------------------------- /functions/Pipe4ggplot2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Pipe4ggplot2.R -------------------------------------------------------------------------------- /functions/Plot_showcase.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Plot_showcase.R -------------------------------------------------------------------------------- /functions/Plotting_photos.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Plotting_photos.R -------------------------------------------------------------------------------- /functions/PsychedelicSquareRoot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/PsychedelicSquareRoot.R -------------------------------------------------------------------------------- /functions/QR-Code_time.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/QR-Code_time.R -------------------------------------------------------------------------------- /functions/R-squared.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/R-squared.R -------------------------------------------------------------------------------- /functions/RJobTitleGenerator.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/RJobTitleGenerator.R -------------------------------------------------------------------------------- /functions/R_dataFrame_to_Python_Dataframe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/R_dataFrame_to_Python_Dataframe.R -------------------------------------------------------------------------------- /functions/R_fibonacci_benchmarks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/R_fibonacci_benchmarks.R -------------------------------------------------------------------------------- /functions/Random_image_stopifnot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Random_image_stopifnot.R -------------------------------------------------------------------------------- /functions/ReverseInteger.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/ReverseInteger.R -------------------------------------------------------------------------------- /functions/RockPaperScissors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/RockPaperScissors.R -------------------------------------------------------------------------------- /functions/SQL_R.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/SQL_R.R -------------------------------------------------------------------------------- /functions/SelfCommit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/SelfCommit.R -------------------------------------------------------------------------------- /functions/ShortenURL.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/ShortenURL.R -------------------------------------------------------------------------------- /functions/SimpleCardGame.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/SimpleCardGame.R -------------------------------------------------------------------------------- /functions/SmallMultipleGraphs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/SmallMultipleGraphs.R -------------------------------------------------------------------------------- /functions/Spiral_Matrix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Spiral_Matrix.R -------------------------------------------------------------------------------- /functions/Stats_fun.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Stats_fun.R -------------------------------------------------------------------------------- /functions/TSQL_2048.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/TSQL_2048.sql -------------------------------------------------------------------------------- /functions/TryCatch_errorHandling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/TryCatch_errorHandling.R -------------------------------------------------------------------------------- /functions/TwoSum_CanSum.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/TwoSum_CanSum.R -------------------------------------------------------------------------------- /functions/UselessFun_API.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/UselessFun_API.R -------------------------------------------------------------------------------- /functions/UselessSort.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/UselessSort.R -------------------------------------------------------------------------------- /functions/Useless_API.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Useless_API.R -------------------------------------------------------------------------------- /functions/Useless_tetris.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Useless_tetris.r -------------------------------------------------------------------------------- /functions/ValentinePoem.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/ValentinePoem.R -------------------------------------------------------------------------------- /functions/Vanishing_sentence.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Vanishing_sentence.R -------------------------------------------------------------------------------- /functions/Variables_loop_plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Variables_loop_plot.R -------------------------------------------------------------------------------- /functions/WackyPasswordGenerator.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/WackyPasswordGenerator.R -------------------------------------------------------------------------------- /functions/Weierstrass_function.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Weierstrass_function.R -------------------------------------------------------------------------------- /functions/WordScrambler.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/WordScrambler.R -------------------------------------------------------------------------------- /functions/YearProgress.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/YearProgress.R -------------------------------------------------------------------------------- /functions/Yet_another_Fractal.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/Yet_another_Fractal.r -------------------------------------------------------------------------------- /functions/all_time_useless.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/all_time_useless.R -------------------------------------------------------------------------------- /functions/apply.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/apply.R -------------------------------------------------------------------------------- /functions/binary_octal_decimal_conversion.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/binary_octal_decimal_conversion.R -------------------------------------------------------------------------------- /functions/climate_spiral.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/climate_spiral.R -------------------------------------------------------------------------------- /functions/collatz_function.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/collatz_function.R -------------------------------------------------------------------------------- /functions/collatz_in_Every_day_life.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/collatz_in_Every_day_life.r -------------------------------------------------------------------------------- /functions/con-joint.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/con-joint.r -------------------------------------------------------------------------------- /functions/confuser_animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/confuser_animation.gif -------------------------------------------------------------------------------- /functions/confuser_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/confuser_report.md -------------------------------------------------------------------------------- /functions/custom_pallete.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/custom_pallete.R -------------------------------------------------------------------------------- /functions/digitalClock.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/digitalClock.R -------------------------------------------------------------------------------- /functions/distro_animation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/distro_animation.R -------------------------------------------------------------------------------- /functions/dplyrAhaMoments.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/dplyrAhaMoments.R -------------------------------------------------------------------------------- /functions/entropy_meter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/entropy_meter.R -------------------------------------------------------------------------------- /functions/fireworks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/fireworks.R -------------------------------------------------------------------------------- /functions/fourier_selfie.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/fourier_selfie.r -------------------------------------------------------------------------------- /functions/fun_in_fun.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/fun_in_fun.R -------------------------------------------------------------------------------- /functions/ggplot_tornado.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/ggplot_tornado.R -------------------------------------------------------------------------------- /functions/greedy_TSP.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/greedy_TSP.R -------------------------------------------------------------------------------- /functions/happyDino_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/happyDino_head.png -------------------------------------------------------------------------------- /functions/happy_dino.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/happy_dino.R -------------------------------------------------------------------------------- /functions/image_with_image.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/image_with_image.R -------------------------------------------------------------------------------- /functions/install_packages_requirements.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/install_packages_requirements.R -------------------------------------------------------------------------------- /functions/iris_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/iris_py.py -------------------------------------------------------------------------------- /functions/knapsack_v2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/knapsack_v2.R -------------------------------------------------------------------------------- /functions/mathart.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/mathart.R -------------------------------------------------------------------------------- /functions/multiplication_table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/multiplication_table.R -------------------------------------------------------------------------------- /functions/one-line-selfie.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/one-line-selfie.r -------------------------------------------------------------------------------- /functions/pretty_dataframe_definitions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/pretty_dataframe_definitions.R -------------------------------------------------------------------------------- /functions/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/requirements.txt -------------------------------------------------------------------------------- /functions/reverse_hello_world.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/reverse_hello_world.R -------------------------------------------------------------------------------- /functions/schedule_builder.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/schedule_builder.R -------------------------------------------------------------------------------- /functions/signature.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/signature.R -------------------------------------------------------------------------------- /functions/t-test_tantrum.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/t-test_tantrum.r -------------------------------------------------------------------------------- /functions/twin_dragon_fractal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/twin_dragon_fractal.R -------------------------------------------------------------------------------- /functions/useless house.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/useless house.R -------------------------------------------------------------------------------- /functions/useless_pong.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/useless_pong.r -------------------------------------------------------------------------------- /functions/vanishing_sentence.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/vanishing_sentence.gif -------------------------------------------------------------------------------- /functions/while_true_function.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/functions/while_true_function.R -------------------------------------------------------------------------------- /image/Plot_theme_ggplot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/image/Plot_theme_ggplot2.png -------------------------------------------------------------------------------- /image/amazonLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/image/amazonLogo.jpg -------------------------------------------------------------------------------- /image/anim_decibel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/image/anim_decibel.gif -------------------------------------------------------------------------------- /image/appleLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/image/appleLogo.jpg -------------------------------------------------------------------------------- /image/geniLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/image/geniLogo.jpg -------------------------------------------------------------------------------- /image/ljubljana.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/image/ljubljana.jpg -------------------------------------------------------------------------------- /image/ljubljana2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/image/ljubljana2.jpg -------------------------------------------------------------------------------- /image/myiriscompany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/image/myiriscompany.png -------------------------------------------------------------------------------- /image/nbalogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/image/nbalogo.jpg -------------------------------------------------------------------------------- /image/nikeLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/image/nikeLogo.jpg -------------------------------------------------------------------------------- /image/sparkLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/image/sparkLogo.jpg -------------------------------------------------------------------------------- /image/windowsLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaztk/Useless_R_functions/HEAD/image/windowsLogo.jpg --------------------------------------------------------------------------------