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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T16:25:46+00:00 2026-06-06T16:25:46+00:00

Reproducible example below. I have a simulation loop, within which I occasionally have rows

  • 0

Reproducible example below. I have a simulation loop, within which I occasionally have rows I need to remove from a matrix. I have done this by entering an ‘NA’ value into the row I need to remove in a specific position, and then I have a line of code to remove any line with an NA. This has worked great so far. My issue is, I am now running simulations in a certain way that occasionally whittles my matrix down to a single row. Then this occurs, the matrix gets transformed into a ‘character’, and crashes the simulation.

Example:

mat<-matrix(1:10,5,2) #setting up a simplified example matrix
mat[3:5,1]<-NA #Giving 3 rows 'NA' values, for removal of these rows
mat<-mat[!is.na(mat[,1]),] #An example where my procedure works just fine
class(mat)    
mat[2,1]<-NA #Setting 1 of the remaining 2 rows as NA
mat<-mat[!is.na(mat[,1]),] #Removing one of final two rows
class(mat) #No longer a matrix

Is there some way I can do this, where I don’t lose my formatting as a matrix at the end? I am assuming this issue is coming from my use of the “is.na” command, but I haven’t found a good way around using this.

To give a bit more insight into the issue, in case there is a MUCH better way to do this I am too naive to have found yet… In my real-life simulation, I have a column in the matrix that holds a ‘1’ when the individual in the given row is alive, and a ‘0’ when dead. When an individual (a single row) dies, (and the value goes from a ‘1’ to a ‘0’), I need to remove the row. The only way I knew how to do this was to change the ‘0’ to an ‘NA’ and then remove all rows with an NA. If there is a way to just remove the rows with a ‘0’ in a specific column that avoids this issue, that would be great!

  • 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-06T16:25:48+00:00Added an answer on June 6, 2026 at 4:25 pm

    By default, the [ function coerces the output into the lowest possible dimension. In your example, you have a two dimensional array (a matrix): when extracting a single row, it is coerced into a vector of characters.

    To avoid that, have a look at the drop option to the [ function. You should be doing:

    mat <- mat[!is.na(mat[,1]),, drop = FALSE]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following object M , from which I need to extract the
please consider this reproducible example: from PIL import Image import numpy as np import
I have a numeric matrix with 25 columns and 23 rows, and a vector
I've tried to write reproducable example below. It is a mix of .Rmd and
This problem is not readily reproducible in a simple example here but was wondering
I have designed several animated Panel s in C# that all inherit from one
I need to do row-wise operations more than 15 million times, but have too
To provide a reproducible example of an approach, a data set must often be
I need to smooth some simulated data, but occasionally run into problems when the
Now: resolved - no reproducible anymore For some specific application security, I have the

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.