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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T22:31:34+00:00 2026-06-12T22:31:34+00:00

There are many files for which data is in the following form year Jan

  • 0

There are many files for which data is in the following form

year Jan Feb Mar ...........Dec
1990 x1  x2   x3           x12    
1991 y1  y2   y3           y12

.
.

2000 z1 z2 z3             z12

I want to transpose each of the rows and stack them as a column to get the time series as

x1
x2


..
x12
y1
y2
..
y12
z1
.
.
z12

I have looked at the reshape package but not clear as to how it will apply in this problem.
Any ideas for doing this in 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-06-12T22:31:35+00:00Added an answer on June 12, 2026 at 10:31 pm

    Perhaps melt() from the “reshape2” package is what you are looking for:

    library(reshape2)
    DF <- read.table(header = TRUE, text = "Year Jan Feb Mar 
    1990 x1  x2   x3     
    1991 y1  y2   y3 ")
    
    DF2 <- melt(DF, id.vars="Year")
    DF2[order(DF2$Year), ]
    #   Year variable value
    # 1 1990      Jan    x1
    # 3 1990      Feb    x2
    # 5 1990      Mar    x3
    # 2 1991      Jan    y1
    # 4 1991      Feb    y2
    # 6 1991      Mar    y3
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am reading existing code. I noticed that there are many data object files
Consider the following html page, which can load in many large png files: <html>
If I want to check how many files there are in a folder (where
I have developed an application that read how many files are there in a
I have many js files, with some naming convention. If there any tool that
Currently, when I STORE into HDFS, it creates many part files. Is there any
There were many questions about C++ template classes which contain static member variables, as
I have following script which processes emails and save them to csv file. there
I have a program which opens many Excel workbooks and merges data from all
I have a sql file generated by mysqldump --all-databases . There are many databases

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.