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

  • Home
  • SEARCH
  • 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 7073741
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T05:57:58+00:00 2026-05-28T05:57:58+00:00

(R beginner here…) I have a dataset like: > head(q) Date Time System User

  • 0

(R beginner here…) I have a dataset like:

> head(q)
            Date Time System User
1 2011-10-01 00:00:01   12.4  4.6
2 2011-10-01 01:00:02   27.4  1.8
3 2011-10-01 02:00:01   15.2  1.0
4 2011-10-01 03:00:01   19.8  2.4
5 2011-10-01 04:00:02   19.2  3.4
6 2011-10-01 05:00:01   17.8  1.8
> nrow(q)
[1] 2207

Where ‘Date Time’ was formed from raw csv data with as.POSIXct(…)
But when I try a plot with more than 1300 rows:

> qplot(q$'Date Time',q$'User');dev.off()
Error: cannot allocate vector of size 9.8 Gb

And it’s the same with:

> ggplot(q,aes(q$'Date Time',q$'User'))+geom_point(); dev.off()
Error: cannot allocate vector of size 9.8 Gb

What can I do to make it work? I want a scatter of system performance metrics which is spread over three months – the data is hourly so theres about 2200 rows.

  • 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-28T05:57:58+00:00Added an answer on May 28, 2026 at 5:57 am

    You are using the aes function wrong. You use:

    ggplot(q,aes(q$'Date Time',q$'User'))+geom_point()
    

    while the correct would be:

    ggplot(q,aes_string(x = 'Date Time', y = 'User')) + geom_point()
    

    There is no need to feed a vector of data to aes. You could try to see if it helps.
    In addition,
    A good tip is also to use ggsave to save your ggplot’s to file.

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

Sidebar

Related Questions

Bit of a beginner question here: Say I have a block of xml: <root>
Once again a very beginner-ish question, but here I go: I would like to
Absolute beginner question: I have a template file index.html that looks like this: ...
Beginner here, I have a simple question. In Android what would be the best
jQuery beginner here. Here is what I'm working on. I have an area map
hey guys, beginner here. I have written a program that outputs files to .txt's
Haskell beginner here. I want to pass a type parameter with JSON, and have
SQL beginner here. I have a query which takes around 10 seconds to run,
Django advanced beginner here. I'm banging my head against the wall trying to figure
first time posting here. I'm a beginner in jquery and i ran into some

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.