Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6348201
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T21:22:32+00:00 2026-05-24T21:22:32+00:00

I can generate a density plot of 1D data with: qplot(mydatapoints, geom=’density’) I’ve also

  • 0

I can generate a density plot of 1D data with:

qplot(mydatapoints, geom='density')

I’ve also seen plenty of examples of heatmap grids, but these are more akin to histograms for 1D data in that data goes into discrete buckets instead of showing a smooth curve.

Can I plot something similar to the 1D density but for 2D data, with (say) something like hue/saturation/lightness to represent the density?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T21:22:32+00:00Added an answer on May 24, 2026 at 9:22 pm

    I think you want a 2D density estimate, which is implemented by kde2d in the MASS package.

    df <- data.frame(x=rnorm(10000),y=rnorm(10000))
    

    via MASS and base R:

    k <- with(df,MASS:::kde2d(x,y))
    filled.contour(k)
    

    via ggplot (geom_density2d() calls kde2d())

    library(ggplot2)
    ggplot(df,aes(x=x,y=y))+geom_density2d()
    

    I find filled.contour more attractive, but it’s a big pain to work with if you want to modify anything because it uses layout and takes over the page layout. Building on Brian Diggs’s answer, which fills in colours between the contours: here’s the equivalent with different alpha levels, with transparent points added for comparison.

    ggplot(df,aes(x=x,y=y))+
      stat_density2d(aes(alpha=..level..), geom="polygon") +
      scale_alpha_continuous(limits=c(0,0.2),breaks=seq(0,0.2,by=0.025))+
      geom_point(colour="red",alpha=0.02)+
      theme_bw()
    

    enter image description here

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can you suggest sites where I can generate dummy data based on my requirement
The program below can generate random data according to some specs (example here is
I can generate Gaussian data with random.gauss(mu, sigma) function, but how can I generate
Are there any good click tracking utilities which can generate a heatmap for a
I've seen that VS 2010 Ultimate can generate model graph from existing code. But
I can generate my models and schema.yml file based on an existing database. But
In Clearcase I can generate a label for a given set of files and
Disclaimer: I realize I can generate this at runtime in Java, this was needed
I know I can generate debug symbol using -g option. However the symbol is
ASP.NET MVC can generate HTML elements using HTML Helpers, for example @Html.ActionLink() , @Html.BeginForm()

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.