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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T12:44:07+00:00 2026-05-19T12:44:07+00:00

I have an object of type data.frame like this, but much bigger: > head(mydf)

  • 0

I have an object of type data.frame like this, but much bigger:

> head(mydf)  
   id1     id2   n  
1    0 1032142   3  
2    0 1072163   1  
3    0  119323   2  

I need to print to a file columns a1 and a1, each of them n times. So that I could get a file like that:

0 1032142  
0 1032142  
0 1032142  
0 1072163  
0  119323  
0  119323  

I tried the following solutions, but they make use of explicit for loops and are incredibly slow (it take few days to finish them with my data…):

for (j in 1:(nrow(mydf))) for (i in 1:(mydf[j,"n"])) write.table( mydf[j,c("id1","id2")], file="trials", append=T, row.names= F, col.names=F )

The other tries to build a new data.frame with multiplied rows, but it is even slower to run.

towrite=data.frame(); for (j in 1:(nrow(mydf))) for (i in 1:(mydf[j,"n"])) towrite=rbind(towrite,mydf[j,c("id1","id2")])

What is the simplest and fastest way of resolving this under 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-05-19T12:44:08+00:00Added an answer on May 19, 2026 at 12:44 pm

    Try subsetting your data and save in one batch:

    mydf[rep(1:nrow(mydf), mydf$n), ]
    

    If your data is numeric, then manipulating the matrix is much faster:

    mymat <- as.matrix(mydf)
    reps <- as.integer(mydf$n)
    mymat[rep(1:nrow(mymat), reps), ]
    
      id1     id2 n
    1   0 1032142 3
    1   0 1032142 3
    1   0 1032142 3
    2   0 1072163 1
    3   0  119323 2
    3   0  119323 2
    

    If you managed to manipulate your original data.frame, then you will probably be able to handle the above matrix.

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

Sidebar

Related Questions

I have an object type with no-args constructor, but when I specify it as
I have an object of type FSharpOption, but I don't know it's depth. It
I have a object 'currentVersion' of type Data and string variable of 'version',i need
I understand that certain data type object have certain buffer size. E.g. a char
I have object A which in turn has a property of type Object B
If you know an object type, and you have the object's handle (hwnd), is
I have 2 collections of objects. the objects have an object-type 'key' property (I
I have a object of type ICollection<string> . What is the best way to
I have an object of type IMAGE which holds image. I wanted to display
I have an object of type list from which I wish to use to

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.