Skip to main content

Questions tagged [reshape]

In R, Matlab, NumPy and APL, reshape functions allow data to be transformed into more convenient forms.

0 votes
0 answers
15 views

Unexpected coordinate switching when reshaping object positions into 3D grid after flattening and integrating

I am working on processing and analyzing velocity field data from VTI files using Python. The workflow includes reading VTI files, extracting velocity data, computing object trajectories, generating ...
Toto's user avatar
  • 11
-3 votes
0 answers
39 views

cannot reshape array of size 1000 into shape (100,100) [closed]

>>> cent_rand = np.random.randint(1919, 3946, 1000) >>> len(cent_rand) 1000 >>> two_d_cent = cent_rand.reshape((100,100)) Traceback (most recent call last): File "<...
rosa elena's user avatar
0 votes
0 answers
14 views

Why reshape is needed for Sequential models after minmaxscaler class? and how to use?

My recent project is based on 'Stock Prediciton" I'm working on df["Open"] as nd.array. Trying to understand intuitively how this works and whether my predicted data will be correct or ...
Shreeya Sharma's user avatar
0 votes
2 answers
33 views

merge multiple DFs based on column names and row names in R [duplicate]

I have 3 Dfs I need to split it based on columns and row names like shown below I tried merge_recurse option from reshape, looks like it merges row by row. Please help me to get the columns added side ...
Shyamili's user avatar
1 vote
3 answers
58 views

Equivalence between reshape, strides and transpose? (numpy)

i am sorry for the very naive question. I have these lines of numpy code, with a transpose at the beginning, and strides and reshape are used afterward. I wonder if by re-ordering indices in reshape ...
pierre_j's user avatar
  • 939
1 vote
1 answer
29 views

R issue with reshape, reshape is not ordering columns correctly

I am trying to use reshape function in R to arrange my data timepoints in a table. The variable that I am using to split it is numerical, but when reshape arranges the table it incorrectly puts 2,0.5,...
Gabriela Toomer's user avatar
2 votes
1 answer
24 views

How to subset a melt object

My issue I have melt object from reshape2 library. I would like to subset variables with value==1. However, when I select value from subset melt object, I get the id instead of variable. How to get a ...
Yacine Hajji's user avatar
  • 1,307
1 vote
1 answer
56 views

Reshape Pandas Dataframe and group by 2 level columns

I have a dataframe with flat structure of having unique Rows as follow. I need to reshape it as shown below. Using Pivot table and swapping levels, I managed to obtain somewhat closer to the result, ...
rush dee's user avatar
  • 336
0 votes
1 answer
21 views

Troubleshooting onnxruntime inference - X num_dims does not match W num_dims

Using the nnhash.py script found here: https://github.com/AsuharietYgvar/AppleNeuralHash2ONNX # Copyright 2021 Asuhariet Ygvar # # Licensed under the Apache License, Version 2.0 (the "License&...
Joshua Terrill's user avatar
0 votes
1 answer
46 views

this code show an reshape error. how fix this?

I'm new in python and ML. I wrote this code for practicing. It displays this error. how do I solve this reshape problem? import pandas as pd import sklearn as skl data=pd.read_csv('housing.csv') ...
Vahid Agha ahmadi's user avatar
2 votes
3 answers
74 views

Converting dataframe from "wide" to "long" format with pairs of ID variables

Here's an example of what I am trying to do. I am starting with a dataframe in "wide" format, like below. #sample dataframe id_1 <- c(260, 500, 640, 720) id_2 <- c(261, 501, 641, 721) ...
wooden05's user avatar
  • 195
0 votes
1 answer
90 views

How to reshape (n,) array to (n,3) array? [closed]

I have an array with (n,) dimension and for a project I need to have this array with (n,3) shape. This array is a set of a 3-dimensional points. This is the code : vertices = np.array([line[7:] for ...
Margot Berranger's user avatar
0 votes
0 answers
40 views

Performance of numpy matrix vector product on scipy.stats.qmc.Sobol vector when changing reshaping order

Solution at the bottom. I am trying to implement a Brownian bridge and want to speed up the path construction via numpy matrix multiplication, once the bridge is initialised. I am drawing data for 3 ...
Severin's user avatar
0 votes
1 answer
36 views

Reshape seems to be losing observations

i am using reshape in dplyr to turn a long data table into a wide one. but when i do, i seem to be losing some observations. the data table called "data" is a record of 6 different species ...
colby tanner's user avatar
0 votes
1 answer
59 views

How to divide a 2-D tensors into smaller blocks using pytorch?

I've downloaded the EMNIST dataset of letters, and I've converted each image to a torch.tensor object with shape torch.size([28, 28]). However, I would like divide the 28*28 image into 7*7 blocks, ...
Chenming Zhang's user avatar

15 30 50 per page
1
2 3 4 5
261