Quantcast
Channel: ValueError: Shape of passed values is (1, 6), indices imply (6, 6) - Stack Overflow
Viewing all articles
Browse latest Browse all 5

Answer by DevLoverUmar for ValueError: Shape of passed values is (1, 6), indices imply (6, 6)

$
0
0

I was facing the similar error with the message

Shape of passed values is (68, 1783), indices imply (68, 68) in dataframe

And As per my guess, I fed the transpose of ndarray of data and that solved the problem

Changed from

Features_Dataframe = pd.DataFrame(data=Features, columns=Feature_Labels)  # here Features ndarray is 68*1783

To

Features_Dataframe = pd.DataFrame(data=Features.transpose(), columns=Feature_Labels)  # Now Features array became 1783*68 i.e., 1783 rows and 68 columns

Viewing all articles
Browse latest Browse all 5

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>