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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T00:58:25+00:00 2026-06-05T00:58:25+00:00

I have tried using vectors, arrays, lists and collections. When I go to access

  • 0

I have tried using vectors, arrays, lists and collections. When I go to access the data later it seems that the data is cast into some one dimensional structure. For example.

This:

for (i in 1:length(argv)){
    temp= read.csv(file=argv[i], header= TRUE)   
    print( temp )
    input_tables[i]= temp
    print(input_tables[i])

Yields this:

     V1 V2 V3 V4
1  1  5  9 13
2  2  6 10 14
3  3  7 11 15
4  4  8 12 16
[[1]]
[1] 1 2 3 4

  V1 V2 V3 V4
1  2 10 18 26
2  4 12 20 28
3  6 14 22 30
4  8 16 24 32
[[1]]
[1] 2 4 6 8

  V1 V2 V3 V4
1  4 20 36 52
2  8 24 40 56
3 12 28 44 60
4 16 32 48 64
[[1]]
[1]  4  8 12 16

I have looked through the documentation for R (a bit of googling and the help function) and I cant determine what sort of object read.table returns. From my previous experience, I believe that is a dataframe or a matrix.

In any case, how can i store these outputs in some structure and not cast it? Or at least not discard the data. It may be there as it is now. Thanks for your time. I have a workaround in my current situation, but it seems like this should be easily possible.

  • 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-05T00:58:27+00:00Added an answer on June 5, 2026 at 12:58 am

    read.csv will return a data.frame (as stated in ?read.csv, under value)

    Two approaches to combine multiple files, assuming argv is a vector of file names and
    that the inputs will have the same number and order of columns.

    .list <- lapply(argv, read.csv, header = T)
    all_data <- do.call(rbind, .list)
    

    Or, using plyr

    library(plyr)
    all_data <- ldply(argv, read.csv, header = T)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have tried using date(m/d/Y, strtotime(04-05-2012)) but I will get 05/04/2012 or on some
I have just tried using the NSArchiver but for some reason I am getting
I have tried using a stemmer but the words it produces are just not
I have tried using the accordion plugin, but it does not work, and I
I am trying to programatically unzip a zipped file. I have tried using the
Hi I want to create a JSON array. I have tried using: JSONArray jArray
We have tried it using an orm mapper tool, but it opens en closes
I have tried to draw Polygon using Drawing Manager and send the Polygon Coordinates
I have tried fetching MySQL query results using mysql_fetch_row() and mysql_result() and numeric values
I have tried setting the debug flags using the set command in cmake but

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.