Top "Transpose" questions

Transposition is an operation that applies to matrices wherein the rows and columns are swapped

How do I transpose a tibble() in R

In R the t() function is really meant for matrices. When I try to transpose my tibble with t() I …

r dataframe transpose
Google Spreadsheet Script - How to Transpose / Rotate Multi-dimensional Array?

I'm trying to create a function that takes in any array and transpose it so that rows turns to columns …

javascript google-apps-script multidimensional-array google-sheets transpose
Fast inverse and transpose matrix in Python

I have a large matrix A of shape (n, n, 3, 3) with n is about 5000. Now I want find the inverse …

python numpy transpose matrix-inverse
How to use CONCAT in QUERY?

I have a table: A | B | C BEN | MOSKOW | YES ANTON | IRKUTSK | NO VIKTOR | PARIS | YES BEN | PARIS | YES ANTON | …

google-sheets transpose array-formulas google-sheets-query
How to turn a Pandas column into array and transpose it?

I have a Pandas dataframe called 'training_set' that resembles the screenshot below: I try to turn the 'label' column …

python arrays pandas numpy transpose
Transposing data from column to row using references

I have some data in a row, say A1 to Z1, and I would like to link to this data …

excel excel-formula transpose formulas array-formulas
Split lines on spaces in Sublime Text

How can i split lines in Sublime Text 3? I tried ctrl+t, ctrl+x but it does not work. I …

sublimetext3 transpose
How to transpose a matrix in prolog

How can I transpose a list like [[1,2,3][4,5,6][6,7,8]] to [[1,4,6],[2,7,8],[3,6,9]]? To depict it: I'd like to flip the matrix 90 degree to the …

list matrix prolog transpose
Pandas setting multi-index on rows, then transposing to columns

If I have a simple dataframe: print(a) one two three 0 A 1 a 1 A 2 b 2 B 1 c 3 B 2 d 4 C 1 …

python pandas dataframe transpose multi-index
Dataframe transpose with pyspark in Apache Spark

I have a dataframe df that have following structure: +-----+-----+-----+-------+ | s |col_1|col_2|col_...| +-----+-----+-----+…

python apache-spark dataframe pyspark transpose