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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T15:12:03+00:00 2026-05-25T15:12:03+00:00

Here, I would like to have your helps on implementing calculation of integral on

  • 0

Here, I would like to have your helps on implementing calculation of integral on two vector. I checked pages on integral calculation relative to R. But, I have few training on mathematics, so I still can not do that by myself.

My objectives is to implement the idea of this sentence “If you plot the rate estimates by position, the genetic map is just the integral of this plot.” This mean I have variables (rates, positions), each position have a rate of its own. I want to calculate the integral of rates for each position. Here, the position is Monotonically increasing.

This task should not be so complex for those who have good background on mathematic computation. So, could you please give me any directions/instructions on that?

Thanks in advance.

# here I make dummy data

position <- c(2,34,58)
rate <- c(14, 20, 5)  
  • 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-25T15:12:04+00:00Added an answer on May 25, 2026 at 3:12 pm

    In mathematics, an integral is the area under the curve. In your example, you want the area under the curve as defined by position and rate.

    position <- c(2,34,58)
    rate <- c(14, 20, 5)  
    
    plot(position, rate, type="l", ylim=c(0, 25))
    

    enter image description here

    You can calculate the area under the curve by hand, using the trapezoidal rule:

    32*17 + 24*12.5 = 844
    

    Or, to do it programmatically:

    AUC <- function(x, y){
      sum(diff(x)*rollmean(y,2))
    }
    
    AUC(position, rate)
    [1] 844
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here's the issue: I have 2 data contexts that I would like to do
Here is the idea I would like to develop. I need to have an
I have a space in which I would like certain elements (represented here by
Here's a simplified example of an object I have. What I would like to
i have done an Accordion style jQuery function which works lovely, but would like
$('#selector').click(function() { // here I would like to load a javascript file // let's
I'm following the documentation here as I would like to add Actors to the
I am using jquery uploader from here and I would like to know how
Here's the situation: I would like to iterate through a table with input controls,
Here's what I would like to do: IF cell H of worksheet A =

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.