Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
3answers
3k views

A Transpose/Unzip Function in Python

I have a list of 2-item tuples and I'd like to convert them to 2 lists where the first contains the first item in each tuple and the second list holds the second item. For example: original = [('a', ...
7
votes
1answer
619 views

Simple row transposition cipher

For a Lisp class, we were given a simple row transposition cipher homework, which I tried to solve in Haskell, too. Basically, one just splits a string into rows of length n, and then transposes the ...
6
votes
5answers
6k views

Easiest way to transpose an image (rotate by 90 degrees) using OpenCV?

What is the best way (in c/c++) to rotate an IplImage by 90 degrees? I would assume that there must be something better than transforming it using a matrix, but I can't seem to find anything other ...
5
votes
4answers
92 views

transpose/rotate a block of a matrix in python

i have a 6x6 matrix as a list of lists in python. The matrix is divided into 4 square blocks of size 3x3. I want a way to take a transpose of only 1 block. I can do it using the traditional method of ...
5
votes
4answers
144 views

Is there a python builtin that does this:

Is there a python builtin that does the same as tupler for a set of lists, or something similar: def tupler(arg1, *args): length = min([len(arg1)]+[len(x) for x in args]) out = [] for i ...
4
votes
2answers
91 views

Transpose a 1 dimensional array, that does not represent a square, in place

This question is similar to this, but instead of an array that represents a square, I need to transpose a rectangular array. So, given a width: x and a height: y, my array has x*y elements. If width ...
4
votes
5answers
104 views

Tricky MySQL query instead of a Python script to achieve the result?

Before I set out to write a Python script, I want to see if MySQL alone can produce the result. I have a list of products : PID Product ----------- 1 AAA 2 ABC 3 BAC 4 CAB 5 CBA I have ...
4
votes
2answers
616 views

Is there a safe way in Scala to transpose a List of unequal-length Lists?

Given the following List: val l = List(List(1, 2, 3), List(4, 5), List(6, 7, 8)) If I try to transpose it, Scala will throw the following error: scala> List.transpose(l) ...
3
votes
3answers
77 views

Finding the transpose of a very, very large matrix

I have this huge 2 dimensional array of data. It is stored in row order: A(1,1) A(1,2) A(1,3) ..... A(n-2,n) A(n-1,n) A(n,n) I want to rearrange it into column order A(1,1) A(2,1) A(3,1) ..... ...
3
votes
2answers
70 views

Transposing a dataframe maintaining the first column as heading

I have a big dataframe, but small example would be like this: mydf <- data.frame(A = c(letters[1:10]), M1 = c(11:20), M2 = c(31:40), M3 = c(41:50)) I want to transpose the dataframe and maintain ...
3
votes
2answers
109 views

How can I transpose a matrix in Groovy?

I need transpose an array from rows into cols and cols into rows def mtrx = [ [1,2,3], [4,5,6] ] //mtrx.anyMethod() //expected result //[[1,4],[2,5],[3,6]] Do you know a direct method from ...
3
votes
4answers
214 views

python list of lists transpose without zip(*m) thing

for instance: l=[[1,2,3],[4,5,6],[7,8,9]] and the result I'm looking for is r=[[1,4,7],[2,5,8],[3,6,9]] and not r=[(1,4,7),(2,5,8),(3,6,9)] Much appreciated
3
votes
1answer
341 views

Is there a JavaScript data table component that displays columns as rows?

I want to display a "flipped" (transposed) data table. E.g. given some data: [{col1: "abc", col2: 123}, {col1: "xxx", col2: 321}] It's displayed as +------+-----+-----+ | col1 | abc | xxx | ...
3
votes
7answers
664 views

Transposing and Untransposing a String in java

I have been working on two methods that will Transpose and Untranspose a String respectively. The solutions that I have come up with both work to the best of my knowledge. I just want to know if I ...
3
votes
3answers
174 views

Vacancy Tracking Algorithm implementation in C++

I'm trying to use the vacancy tracking algorithm to perform transposition of multidimensional arrays in C++. The arrays come as void pointers so I'm using address manipulation to perform the copies. ...
3
votes
9answers
4k views

Transpose a file in bash

I have a huge tab-separated file formatted like this X column1 column2 column3 row1 0 1 2 row2 3 4 5 row3 6 7 8 row4 9 10 11 I would like to transpose it in an efficient way using only using ...
2
votes
4answers
63 views

How to Transpose Dictionary Names from one module into Dictionary Keys in another module?

I'll try to be as clear as possible of my intent and would happily take suggestions for revising my data structure (still rather new to programming). I have a program that is running a series of ...
2
votes
1answer
68 views

Transpose of a matrix in numpy

I have this numpy array: a = np.array([[[1,2,3],[-1,-2,-3]],[[4,5,6],[-4,-5,-6]]]) b is a transpose of a. I want b be like this: b = np.array([[[1,-1],[2,-2],[3,-3]],[[4,-4],[5,-5],[6,-6]]]) Is ...
2
votes
6answers
124 views

Can I “transpose” a list of maps into a map of lists in Clojure?

Hi huys : I want to map a "average" for all values in a map. say I have a list of maps : [{"age" 2 "height" 1 "weight" 10}, {"age" 4 "height" 4 "weight" 20}, {"age" 7 "height" 11 "weight" 40}] ...
2
votes
1answer
100 views

Python: clockwise polar plot

How can I make a clockwise plot? Somebody ask a similar question here: How to make the angles in a matplotlib polar plot go clockwise with 0° at the top? But I dont understand this. import ...
2
votes
2answers
581 views

Python numpy transpose

I use Python and Numpy and have some problem with "transpose": a=array([ 5,4]) # a is random !!! print a print a.T Why this no working? If a is for example [[],[]] then works but I ...
2
votes
2answers
317 views

SAS proc transpose and output to excel

Another SAS question from me (I noticed these don't come up here that often...): I have a data set containing something like this: Name | Category | Level | Score John | cat1 | 1 ...
2
votes
5answers
175 views

Intersecting sublists in Mathematica

I have the following two lists l1 = {{{2011, 3, 13}, 1}, {{2011, 3, 14}, 1}, {{2011, 3, 15}, 1}, {{2011, 3, 16}, 2}, {{2011, 3, 17}, 3}}; l2 = {{{2011, 3, 13}, 40}, {{2011, 3, 16}, 50}, {{2011, ...
2
votes
3answers
393 views

Visual studio CTRL+SHIFT+T transpose - what does it do?

I wrote some code and tried the Ctrl + T to check transpose feature in visual studio. Just to check if CTRL + Shift + T does the reverse for this Transpose... I tried pressing Ctrl + Shift + T. and ...
2
votes
4answers
285 views

Read flat file as transpose, python

I'm interested in reading fixed width text files in Python in as efficient a manner as I can. Specifically, most of the time I'm interested in one or more columns in the flat file but not entire ...
2
votes
2answers
93 views

Can someone explain how this code snippet works, i know it finds the transpose of a list of lists but I am having a tough time finding how

def transposed(lists): if not lists: return [] return map(lambda *row: list(row), *lists)
2
votes
3answers
303 views

numpy: compute x.T*x for a large matrix

In numpy, what's the most efficient way to compute x.T * x, where x is a large (200,000 x 1000) dense float32 matrix and .T is the transpose operator? For the avoidance of doubt, the result is 1000 x ...
2
votes
1answer
976 views

How to transpose matrix using uBLAS?

I am a newbie in C++ Boost uBLAS library so I have a noob question - how to transpose a matrix using this library? I could not find question here: ...
2
votes
3answers
1k views

Transpose one row into many rows Oracle

I have a query that always returns one row, with many columns. I would like to turn this into 2 columns and many rows. Original results: Col1, Col2, Col3, Col4 ---------------------- val1, val2, ...
2
votes
1answer
479 views

how to use a macro to transpose data from rows into columns

I am totally new to VBA (aside from recording and running manually) so was hoping somebody could help me with designing this. I have a worksheet with unspecified # of rows per unique ID (column A), ...
2
votes
2answers
3k views

Transpose select results with Oracle

my question is, with some background: I have to generate some sql queries based on the table metadata (column format), and the result is something like: TABLENAME1|COL1 TABLENAME1|COL2 ...
2
votes
2answers
2k views

Oracle Columns to Rows

In Oracle 9i and 10g how to transpose columns to rows and vice versa?
1
vote
3answers
39 views

SAS Safe Column Names

Is there a simple way in SAS to convert a string to a SAS-safe name that would be used as a column name? ie. Rob Penridge ----> Rob_Penridge $*@'Blah@* ----> ____Blah__ I'm using a proc ...
1
vote
1answer
27 views

How can I obtain a transposed UNION of 3 SQL Tables?

How can I obtain a transposed UNION of the TSQL Query Results below SELECT TOP 1 Column_A FROM table1 SELECT TOP 1 Column_B FROM table2 SELECT TOP 1 Column_C FROM table3 So that the output will ...
1
vote
2answers
63 views

Transpose Query in PostgreSQL

I've the following table: tb_item id_item | item_name | price ---------------------------- 1 | item1 | 2000 2 | item2 | 3000 3 | item3 | 4000 and tb_value id_value | ...
1
vote
2answers
97 views

Fastest 8x16 bit matrix transpose on MIPS?

I have an 8x16 matrix of bits as a UINT8 matrix[16]. I want to transpose the matrix and store it as a UINT16 matrix2[8]. This is in a time critical piece of my code, and so I need to do this as fast ...
1
vote
2answers
127 views

SQL - SELECT DISTINCT with field transposition

I have a table like this: cod_amb | field_a | field_b | field_c | field_d | field_e 21 | N.A. | Fixed | N.A. | N.A. | Natural 21 | Conif | Temp | N.A. | ...
1
vote
1answer
195 views

Transposing rows to columns using self join

I have a table named category with values as below, CategoryId      | Value |     Flag 1            ...
1
vote
3answers
160 views

How to transpose a 2 Element Vector

In python, I have a 2x1 array a=array([[ 0, 4, 8, 12, 16], [ 0, 8, 16, 24, 32]]) When I extract a column vector c=a[:,1] C becomes a 1x2 array, and I wish it to be a 2x1 array. Applying ...
1
vote
1answer
224 views

How to transpose sheet with POI SS/XSSF?

I am using POI XSSF API and I would like to transpose a sheet. how can I do that? Thanks.
1
vote
2answers
204 views

Error using ==> transpose — MATLAB

Im trying to transpose this matrix but its not working .. Basically I got data such as : s=tf('s') G=1/(s+1) [mag phase]=bode(G,1:5) And i get the following for phase : phase(:,:,1) = -45 ...
1
vote
3answers
582 views

How do I create a Java Swing JTable with header as first column, not as first row?

I am using Java 6.0 + Swing + JTable. Normally, JTable renders the header as the first row. (Left image) However, I would like to render the header as the first column. (Right image) I don't think ...
1
vote
1answer
30 views

What is the correct way of getting data from a MySQL table based on columns from another? Transposing?

I have a table like this: idstable +--------+-----+-----+-----+-----+-----+ | userid | id1 | id2 | id3 | id4 | id5 | +--------+-----+-----+-----+-----+-----+ | 1 | 6 | 2 | 52 | 32 | 16 | ...
1
vote
1answer
52 views

sorting 2d array with nil value

I have an array like this a=[["address", "US"], ["company", "apple"], ["CEO", ""], ["Website", ""]] I need the first values like ["address", "company", "CEO","Website"] so what i did was ...
1
vote
3answers
620 views

How to pivot data in a csv file?

For example, i would like to transform: Name,Time,Score Dan,68,20 Suse,42,40 Tracy,50,38 Into: Name,Dan,Suse,Tracy Time,68,42,50 Score,20,40,38 EDIT: the original question used the term ...
1
vote
2answers
323 views

Swapping either Columns or Rows in a Ruby Matrix

I want to swap either rows or columns in an array of arrays (i.e. a matrix). I have found this swap method online, and I extended it with my mutate function, where the board.matrix is the array of ...
1
vote
1answer
124 views

Tranpose the table rows to column

I have a table which looks like this: id response_id name value 6 13 gender female 5 13 workingArea Sch 3 12 workingArea IT 4 12 ...
1
vote
3answers
863 views

how do you transpose a non-square matrix? in C

i have my code for transposing my matrix: for(j=0; j<col; j++) { for(k=0; k<row; k++) { mat2[j][k] = mat[k][j]; } it seems to work on a square matrix but not on a nonsquare ...
1
vote
1answer
253 views

Transposing from rows into columns

Hey, I have a table like this Name State Amount ------------------------------ Pump 1 Present 339 Pump 1 Optimized 88 Which I want to transpose something like this Pump 1 Present ...
1
vote
2answers
254 views

Transposing a matrix

I want to transpose a matrix, its a very easy task but its not working with me : UPDATE I am transposing the first matrix and storing it in a second one The two arrays point to the same ...

1 2