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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T11:24:09+00:00 2026-05-13T11:24:09+00:00

Is there a standard/common method/formula to calculate the number of months between two dates

  • 0

Is there a standard/common method/formula to calculate the number of months between two dates in R?

I am looking for something that is similar to MathWorks months function

  • 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-13T11:24:09+00:00Added an answer on May 13, 2026 at 11:24 am

    I was about to say that’s simple, but difftime() stops at weeks. How odd.

    So one possible answer would be to hack something up:

    # turn a date into a 'monthnumber' relative to an origin
    R> monnb <- function(d) { lt <- as.POSIXlt(as.Date(d, origin="1900-01-01")); \
                              lt$year*12 + lt$mon } 
    # compute a month difference as a difference between two monnb's
    R> mondf <- function(d1, d2) { monnb(d2) - monnb(d1) }
    # take it for a spin
    R> mondf(as.Date("2008-01-01"), Sys.Date())
    [1] 24
    R> 
    

    Seems about right. One could wrap this into some simple class structure. Or leave it as a hack 🙂

    Edit: Also seems to work with your examples from the Mathworks:

    R> mondf("2000-05-31", "2000-06-30")
    [1] 1
    R> mondf(c("2002-03-31", "2002-04-30", "2002-05-31"), "2002-06-30")
    [1] 3 2 1
    R> 
    

    Adding the EndOfMonth flag is left as an exercise to the reader 🙂

    Edit 2: Maybe difftime leaves it out as there is no reliable way to express fractional difference which would be consistent with the difftime behavior for other units.

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

Sidebar

Related Questions

Is there a standard/common way to give compiler-style error messages that point to a
Is there a standard or common way in C++ to handle static strings that
Is there a standard Java library that handles common file operations such as moving/copying
Is there a language standard (or common practice) for describing an Objective-C method with
Is there a common standard for reporting errors in your class functions? I've seen
Is there any standard way of debugging Javascript on a webpage that's being accessed
Is there a standard convention for the types of files that go in \Windows\
Is there a standard framework (maybe part of Enterprise Library... or .NET itself) that
Is it useful to write a standardised TDD [Test] method that would expose common
The standard defines that Unions cannot be used as Base class, but is there

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.