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 9164545
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T14:42:34+00:00 2026-06-17T14:42:34+00:00

Possible Duplicate: Plotting and saving PDFs in a loop Newbie’s issues. My tab separated

  • 0

Possible Duplicate:
Plotting and saving PDFs in a loop

Newbie’s issues.
My tab separated input data looks like that:

x y
1 50
2 25
3 60
4 25
5 90
6 100

Here is my code file “code.R”:

data <- read.table("input",header=T,sep="\t")
pdf("output.pdf")
ggplot (data,aes(x=x,y=y) + geom_bar(stat="identity")
dev.off()

I run the code with the command below and don’t get any error message in return:

source("code.R")

The code generates the “output.pdf” file but it is blank (error when I want to open it).

When I enter manually in my R terminal the 1st then the 2nd line of the above code, the graph looks correct in the graphic device.

When I write the lines below in a file and run the file, nothing happen (no errors, no graphic device window)

data <- read.table("input",header=T,sep="\t")
ggplot (data,aes(x=x,y=y)) + geom_bar(stat="identity")

The line endings of both input and code files are in windows format.
I also tried data <- as.data.frame(read.table(...)) but it changes nothing.
I really don’t see what’s wrong in my code…

Any advice and explanations would be great !
Thanks !

  • 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-06-17T14:42:36+00:00Added an answer on June 17, 2026 at 2:42 pm

    You’re missing a close parentheses for your ggplot call.

    This line:

    ggplot (data,aes(x=x,y=y) + geom_bar(stat="identity")
    

    Should be:

    ggplot (data,aes(x=x,y=y)) + geom_bar(stat="identity")
    

    Or you can try ggsave() instead of pdf() dev.off() like this:

    ggplot (data,aes(x=x,y=y)) + geom_bar(stat="identity")
    ggsave("output.pdf")
    

    Don’t mix the two methods.

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

Sidebar

Related Questions

Possible Duplicate: Plotting during a loop in RStudio I'm trying to monitor the status
Possible Duplicate: Does every Core Data Relationship have to have an Inverse? I have
Possible Duplicate: I have a nested data structure / JSON, how can I access
Possible Duplicate: Plotting 4 curves in a single plot, with 3 y-axes assuming I
Possible Duplicate: Plotting 4 curves in a single plot, with 3 y-axes I have
Possible Duplicate: I need a good way to get data from a thread to
Possible Duplicate: How do you like your primary keys? I'm aware of the benefits
Possible Duplicate: how to add a reference to the system.data.SQLite.dll to the windows phone
Possible Duplicate: Why do I see a double variable initialized to some value like
Possible Duplicate: Data frame transformation gives different results when same code is run before

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.