pyplot tag

3 questions


2 answers
87 views
0
Failed to get desired results while using the pyplot library.

import matplotlib.pyplot as pltimport csvdef analyze(): day = range(1, 31) temp = [] datafile = '15_01.csv' with open(datafile, 'rt') as f: data = csv.reader(f, delimiter=',') for d in data: temp.a...

1 years ago

1 answers
122 views
0
Python pyplot - ValueError: Illegal argument(s) to plot: (2, 10)

Traceback (most recent call last): File C:/Users/yym30/PycharmProjects/tensorflow/mnist/networks/autoencoder2.py, line 62, in <module> fig, ax = plt.subplot(2, sample_size, figsize = (sample_siz...

1 years ago

1 answers
88 views
0
Error message when using subplot in pyplot: ValueError: Illegal argument(s) to subplot: (2, 10)

I'm a beginner who is practicing after reading a book by TensorFlow Golvin Hacker.I use the subplot of pyplot, but I wrote the same code as the book, but it emits an error message ㅜ 어떻게 Please hel...

1 years ago

© 2024 OneMinuteCode. All rights reserved.