Plotting correlation matrix | Corrplot() function | Rstudio

Поделиться
HTML-код
  • Опубликовано: 18 мар 2021
  • Today, we shall learn how to get a graphical display of correlation matrix using corrplot() function in Rstudio.
    Video contains:
    1. Importing data set
    2. Correlation analysis
    3. Simple graphical display of correlation matrix
    4. Using arguments of corrplot() function
    5. Highlight significant p-values
    6. Showing confidence interval
    =============
    Suggested Video
    =============
    Correlation analysis in R: • Correlation analysis in R
    Hierarchical clustering in R: • Visualizing clusters i...
    Cluster analysis in R: • Cluster analysis in R ...
    K-means clustering : • Cluster analysis in R ...
    ___________________________________________
    =============
    Download Links
    =============
    Download R-script & data file - visit this blog:
    R is free software and you can download it from the link given below
    www.r-project.org/
    Download link for R studio
    www.rstudio.com/products/rstu...
    ___________________________________________
    ====================
    Get connected with us on
    ====================
    Facebook page: / agroninfotech
    Twitter: / agroninfotech
    Linked In: / agron-info-tech-7429a6156
    ____________________________________________
    If you have any question please comment below.
    Thanks for watching this video.
    #rstudio
    #PlottingCorrelationMatrix
    #corrplot()
    #R

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

  • @muzafferbarut1792
    @muzafferbarut1792 3 года назад +2

    thank you, it is very helpful.

  • @rwaewae
    @rwaewae 2 года назад

    Hi, How can we combine summary statistics and correlation plot in one diagram or in one table in R

  • @deryaakpinar5412
    @deryaakpinar5412 Год назад

    Thanks for the video; it is constructive. I am trying to add a significance mark (as "*") in the different confidence intervals into your code: it is like this; the symbol "*" displays under the correlation coefficient in the matrix when the p

  • @naeemfiaz7234
    @naeemfiaz7234 3 года назад

    👍🏻

  • @scenarios911
    @scenarios911 Год назад

    How to show up stars instead XXX

  • @naeemfiaz7234
    @naeemfiaz7234 3 года назад

    Love you sir

  • @heathermillburn4011
    @heathermillburn4011 3 года назад

    I don't understand how to prepare my data before selecting a method. I'm using an excel datasheet (5 columns, 9 rows). The first column and first row are characters, could this be the problem?

    • @AGRONInfoTech
      @AGRONInfoTech  3 года назад

      You can remove first column from data (if you imported data into an object called "data" ) object with below command
      data2 = data[, -1]
      Then use data2 object to plot correlation.
      If still have issues feel free to ask.

    • @heathermillburn4011
      @heathermillburn4011 3 года назад +1

      @@AGRONInfoTech Thank you! Did help :)