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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T04:25:45+00:00 2026-05-24T04:25:45+00:00

I have a data table (dt) that has a datetime column. I also have

  • 0

I have a data table (dt) that has a datetime column. I also have a separate list of datetimes (L).

How can I return a subset of dt that has +/- N rows for each match of an item in L against the datetime column of dt?

I am interested in doing this generically as possible, so this case is a datetime, but I would also be interested in doing it for factors and integers as well. Ideally this would dedup any overlaps as well.

Basically this would be something like grep 'foo|foo1' -A10 -B10 which translates to “Show lines that match foo or foo1 including 10 lines before and after”.

  • 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-24T04:25:46+00:00Added an answer on May 24, 2026 at 4:25 am

    so as an example

    dt <- data.frame (dt = 101 : 200)
    L <- c (163, 200, 131)
    

    then the row numbers of your matches are

    matches <- which (dt$dt %in% L)
    

    Now say you want from 3 rows before to 1 after:

    extrarows <- -3 : 1
    

    Now outer is your friend:

    rows <- outer(extrarows, matches, `+`)
    

    is almost what you’re looking for, we just

    • need to make sure the entries are all valid row numbers (there could be negative numbers in rows):

      rows <- rows [rows %in% seq_len (nrow (dt))]

    • you may also want to get rid of duplicates:

      rows <- unique (rows)

    • if you want to preserve the matrix structure of rows, maybe setting invalid indices to NA is better than removing them:

      rows [! rows %in% seq_len (nrow (dt))] <- NA

    now you return

    dt [rows,]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an old table with a few rows that has a datetime column.
I have a table that has redundant data and I'm trying to identify all
I have a sql table of payroll data that has wage rates and effective
I have to delete some rows from a data table. I've heard that it
I have table in sqlalchemy 0.4 that with types.DateTime column: Column(dfield, types.DateTime, index=True) I
I have a Priority class that has a datetime column. This column has a
I have a SQL Server DB table that has a column ReceivedDate defined as
i have a stored procedure that has to retrieve data from multiple tables something
I have a DataTable that has a boolean column called [Invalid]. I need to
I have a datatable that has a date column, but I am stumped as

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.