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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T12:20:36+00:00 2026-06-06T12:20:36+00:00

I have the data in two files. I want to plot a graph the

  • 0

I have the data in two files. I want to plot a graph the ratio of their frequencies.

For example, in my file A numbers from 1 to 5 occurs 20 times. In my file B, numbers from 1 to 5 occurs 10 times(histogram has bar width of 5). The ratio of those two is 20/10 = 2. I want to plot this ratio in a graph. Can it be done using R?

  • 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-06T12:20:38+00:00Added an answer on June 6, 2026 at 12:20 pm

    Assuming you read the 2 files in the variables data1 and data2 you could do:

    bins <- seq(0, 100, 5) # Change this to whatever range your data encopasses
    h1 <- hist(data1, bins, plot=0)
    h2 <- hist(data2, bins, plot=0)
    
    ratio <- h1$counts/h2$counts
    # Remove NaNs and Infs due to 0 counts
    ratio[is.na(ratio)] <- 0
    ratio[is.inf(ratio)] <- 0
    barplot(ratio)
    

    Alternatively you can create a 3rd hist object, which has the advantage of correctly plotting the x-axis

    h3 <- h1
    h3$counts <- ratio
    plot(h3, col="black")
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a php page that creates page data from two .txt files (one
I have two hashsets that are loading data from two different text files. The
I have two files in my src/main/resources and I want one file's body to
I have a C# program that selects data from two different database files and
I have two files. file1 has the data like belowing containing only one column.
I have two text files that contain columnar data of the variety position -
I have a database with two tables: data and file . file_id is a
I am trying to have two data series plotted in one graph as boxes
I have two data files in tab separated CSV format. The files are in
Okay I have 2 files. One file is data that is updated every 10

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.