Skip to main content
Filter by
Sorted by
Tagged with
3 votes
0 answers
150 views

I was benchmarking a naive transposition and noticed a very large performance discrepancy in performance between: a naive operation where we read data contiguously and write with a large stride; the ...
Etienne M's user avatar
  • 715
3 votes
1 answer
95 views

I'm trying to transpose a matrix in Python. The function should change the original variable. When I've looked up similar problems, they talk about editing the variable 'in place', but when I tried ...
Dominic 's user avatar
0 votes
0 answers
56 views

I am new to scripting and get the basic ideas of looping and the such. I want to loop through a column of a worksheet selection specific cell ranges and paste special transpose on the next sheet. I ...
Lee's user avatar
  • 1
0 votes
1 answer
41 views

I am trying to transpose 2 columns into 4 rows, but it's been extremely tricky as there is duplicate lines, making pivoting difficult. What I have is this data as df: Device Serial Property ...
CheeseSteak's user avatar
0 votes
0 answers
38 views

I'm new to crystal reports 2020 and need help with getting some data from rows into columns. The report will be exported into excel. Here is an example of the data right out of the table. ActionID ...
shimkoko's user avatar
-1 votes
1 answer
168 views

I have the following input: .TY records can vary from 1 to 30 times I tried with build & PUSH in sort but i couldn't get the expected below output I need to get it using SORT not COBOL. The BEGIN ...
Angel's user avatar
  • 9
0 votes
2 answers
109 views

Please need your help. I have an excel file with this following structure, that one row is divided into the next two rows: initial And need finally get this one. Every third row need to be combined ...
user46956's user avatar
-2 votes
2 answers
60 views

I have a dataframe that I have successfully transposed using the t function present in base R. However I'd like to change the column names and row names to be part of the dataframe. I'll use the iris ...
andrew's user avatar
  • 2,129
0 votes
3 answers
87 views

I have a example table with 3 columns (Sample, Index, Value). In this example, there are 12 samples, 3 possible Index and for each of them a Value. I would like to transpose to columns the Value by ...
newuser20250115's user avatar
0 votes
1 answer
102 views

I have a SQL script that outputs this: timestamp tagname value 12/19/2024 15:00:57 RUNNING 0 12/19/2024 15:00:55 RUNNING 1 12/19/2024 14:53:38 RUNNING 0 12/19/2024 14:53:35 RUNNING 1 12/19/2024 14:53:...
NEUser's user avatar
  • 89
1 vote
3 answers
124 views

I had some data with a long text string that contained data with certain dates within them. I parsed out each individual text section and the corresponding date into different columns. Each ID will ...
Ryan's user avatar
  • 101
2 votes
2 answers
202 views

I need to find a way to create a SQL view that allows me to transpose some data that in one table a particular column contains the column names from another table. Table: FormControl: FormType ...
Andrew Longland's user avatar
0 votes
1 answer
99 views

I have a matrix transposing code like this: for (size_t ii = 0; ii < ii_end; ii+=TILE_SIZE) { for (size_t jj = 0; jj < jj_end; jj+=TILE_SIZE) { for (size_t i = 0; i < TILE_SIZE; i+...
Bogi's user avatar
  • 2,698
0 votes
1 answer
149 views

I have a dataset that is approximately 30,000 rows & approximately 30 columns, consisting of: 1 column is a unique identifier (SSN) 6 columns are of diagnostic ICD codes 6 columns are of ...
AJ1981's user avatar
  • 3
-1 votes
1 answer
68 views

I have a database with references in column V. Some cells have single value, like 0001, others have several comma separated values, like 0001, 0002, 0003. I am trying to retrieve this data to a single ...
Pavel_dp's user avatar
0 votes
2 answers
72 views

I have a table that has ID and Description. One ID can have multiple rows of Description. I would like to change the format to a table where there will be 1 unique row for each ID and multiple columns ...
Hifza Rahim's user avatar
0 votes
2 answers
48 views

I have a table where I store data of some parameters which are read step-wise. The number of parameters to be read can vary from use-case to use-case. The dataset of one step can be identified by its ...
WolfiG's user avatar
  • 1,193
0 votes
2 answers
74 views

I have a below dataframe, I'm trying to transpose the data based on the column Place. For each list of value in Place column, I need to generate a each row. Language Capital Place Tamil ...
Jim Macaulay's user avatar
  • 5,251
0 votes
1 answer
60 views

I am struggling with what I hope is a fairly basic problem in transposing a dataframe. My dataframe has a structure like this: Measure = c("Heightpercentile", "Weightpercentile", &...
BPott's user avatar
  • 11
0 votes
1 answer
30 views

I have an issue I cannot figure out how to fix. I have 2 columns, one with names and one with homework done. Names Homework Person 1 Homework 1 Person 1 Homework 2 Person 1 Homework 3 Person 2 ...
Jerome's user avatar
  • 73
0 votes
2 answers
58 views

I have a dataframe with two columns in R. One of the columns (column1) has three possible values (A, A and B, B). The rows are patients. I want to transpose column1, so I'd have binary columns (Yes, ...
roybatty's user avatar
  • 105
0 votes
2 answers
65 views

I have a table with 6 columns like below ID VAL1 VAL2 VAL3 VAL4 VAL5 1234 AB CD NULL DF NULL 5678 HJ NULL UI NULL NULL The expected results are like below. I want to transpose the data like below. ...
skg's user avatar
  • 33
0 votes
0 answers
223 views

So, this is the format my file is in right now - And this is how I want this to be - I am using the website version and am new to Power Automate. I tried to make a flow but I don't know how to ...
Arya's user avatar
  • 45
1 vote
1 answer
46 views

I've looked thru countless examples, but I cannot figure out how to do the below. Any tips would be greatly appreciated Original df (note the multilevel) Gender A B sum ...
Gen's user avatar
  • 41
0 votes
2 answers
108 views

I am looking for a way to automatically transpose data from columns to rows based on merged cells. I have attached an example of what I imagine the result should look like. I tried adding this data to ...
Seuss's user avatar
  • 77

1
2 3 4 5
69