Master Data Visualization with RStudio in 3 Easy Steps

Поделиться
HTML-код
  • Опубликовано: 7 янв 2025

Комментарии • 26

  • @MAHATMAALIMIBRAHIM
    @MAHATMAALIMIBRAHIM 6 месяцев назад +3

    Even your simplest video is magnificient. Awesome. Thanks for posting.

    • @milos-makes-maps
      @milos-makes-maps  6 месяцев назад

      Thank you for your kind words and for following my content!

  • @james.varghese
    @james.varghese 6 месяцев назад +1

    This video is a must-watch for anyone starting with R, Rtools, and RStudio, especially before diving into any scripts. Many of us new to GIS and map-making with R often face challenges with version, path, installation, registry and environment issues. The simplest videos are often the most crucial. Thank you Milos for your awesome maps and data visualizations using R! I'm hoping to replicate some of your beautiful and stunning maps after a clean installation of R.

    • @milos-makes-maps
      @milos-makes-maps  6 месяцев назад +1

      Thank you so much for your kind words, James! I'm thrilled to hear that you find my video helpful and inspiring for your work with GIS and map-making in R. It's always great to know that my content is assisting others in overcoming installation and setup challenges. If you ever have any questions or need further assistance while working on your maps, feel free to reach out.

  • @taqwasafdar4407
    @taqwasafdar4407 6 месяцев назад +2

    Sir you should make more tutorials on R use. you are doing great work. Amazing

  • @akarshpasi
    @akarshpasi 2 месяца назад +1

    It is totally amazing and insightful like always.

  • @geomensurainteligente
    @geomensurainteligente 6 месяцев назад +2

    Gracias por tanta dedicación y compartir tus conocimientos. Un Crack!

  • @raghebkamal1100
    @raghebkamal1100 6 месяцев назад +1

    Amazing video 👍

  • @osehmoses6242
    @osehmoses6242 Месяц назад +2

    Hi i am new to this, please i am having problems with installing "rgeoboundaries" as it's saying it's not available for the version of R (4.4.1), any help would be greatly appreciated

    • @milos-makes-maps
      @milos-makes-maps  Месяц назад

      Wow, rgeoboundariee was removed from CRAN after I published this tutorial. You can still download it from the GitHub repo using this code:
      install.packages("remotes")
      remotes::install_github("wmgeolab/rgeoboundaries")

  • @shhadlibya
    @shhadlibya Месяц назад +1

    Thank you

  • @shamimsalut5047
    @shamimsalut5047 17 дней назад +1

    Thanxxx

    • @milos-makes-maps
      @milos-makes-maps  17 дней назад

      You're welcome! Let me know how tge setup goes for you

  • @DevanshiChaudhary-p8z
    @DevanshiChaudhary-p8z 3 месяца назад +1

    When I installed a package, this is what shows up. WARNING: Rtools is required to build R packages but is not currently installed. Please download and install the appropriate version of Rtools before proceeding:

    • @milos-makes-maps
      @milos-makes-maps  Месяц назад

      That's fine: it just warns you to install RTools

  • @Nikita-gs3ob
    @Nikita-gs3ob 6 месяцев назад

    I have problem in installing rayshader version 0.35.7 , it gives me error message that "Error in download_version_url(package, version, repos, type) :
    version '0.35.7' is invalid for package 'rayshader'" Please help me with this.

    • @milos-makes-maps
      @milos-makes-maps  6 месяцев назад

      Hello, I re-run the code on my machine and it installs rayshader version 0.35.7
      Are you also running this code?
      remotes::install_version(
      "rayshader",
      version = "0.35.7",
      repos = "cran.us.r-project.org"
      )

  • @balakumar-de4pb
    @balakumar-de4pb 6 месяцев назад

    I have a huge problem while installing it shows error '\u' used without hex digits in character string (:4:36) 😢

    • @milos-makes-maps
      @milos-makes-maps  6 месяцев назад

      The error message suggests that there is an issue with a Unicode escape sequence in your R script or configuration file. This often occurs when a file path is not properly formatted in R.
      In R, backslashes in file paths need to be escaped with another backslash. Alternatively, you can use forward slashes, which R interprets correctly on all platforms. Here's how you can correct the file path:
      - Incorrect: "C:\User\Documents\file"
      - Correct: "C:\\User\\Documents\\file" or "C:/User/Documents/file"
      If you're setting a file path in an R script or a configuration file like `.Rprofile`, make sure to use the correct format. If you're using RStudio, you can also set the working directory through the GUI to avoid these issues.
      If the issue persists, you may want to check your .Rprofile or any R scripts for incorrect file paths and correct them accordingly

    • @balakumar-de4pb
      @balakumar-de4pb 6 месяцев назад

      @@milos-makes-maps how to set the working directory using GUI

    • @milos-makes-maps
      @milos-makes-maps  6 месяцев назад

      @@balakumar-de4pb Setting up the working directory through the GUI in RStudio is a straightforward process. Here's how you can do it:
      1. Open RStudio and go to the "Files" tab on the lower right-hand pane.
      2. Click on the "..." (more) button to open the navigation box.
      3. Navigate to the desired folder where you want to set as your working directory.
      4. Once you've found the folder, click on ''Set as Working Directory".
      This will change the current working directory to the one you selected, and any files you read or write will be saved in this directory. Remember to save your work before changing directories to avoid losing any unsaved changes.

    • @balakumar-de4pb
      @balakumar-de4pb 6 месяцев назад +1

      Will look into it...

  • @naufaladrianramadhan
    @naufaladrianramadhan 5 месяцев назад

    I have a problem and it says "ERROR: dependencies 'rgl', 'terrainmeshr', 'rayimage', 'rayvertex', 'rayrender' are not available for package 'rayshader'
    * removing 'C:/Users/AppData/Local/R/win-library/4.3/rayshader'" how can i fix it?