plot tag

13 questions


1 answers
131 views
0
Swift—Bridging-Header import causes file not found

I'm a beginner in iOS development, so I'm sorry if it's a rudimentary question...I'm creating an iOS app for Swift, and I'm trying to use CorePlot to draw a pie chart. We tried the following steps wit...

2 years ago

1 answers
131 views
0
Swift—Bridging-Header import causes file not found

I'm a beginner in iOS development, so I'm sorry if it's a rudimentary question...I'm creating an iOS app for Swift, and I'm trying to use CorePlot to draw a pie chart. We tried the following steps wit...

2 years ago

1 answers
116 views
0
I want to create discontinuous color bars in gnuplot

I'd like to create a discontinuous color bar with gnuplot at the end of the page below, but I don't know how to do it, so please let me know.Create Discontinuous Color Bar (Python) I know how to creat...

2 years ago

1 answers
98 views
0
plot an exponential function with f = 10^n in matplotlib as y = x graph

The function f(x) = 10x is an exponential function, so if you just draw it, it looks like a curve, but you want to draw it in a straight line as if you logged it.xI've tried, but this is the limit I c...


1 answers
91 views
0
Matlab error, pleaseㅠ E Error using ==> plot Vectors must be the same lengths.

```q0=input('initial angle=');qf=input('final angle=');tf=input('final time=');a=input('Desired Acceleration=');tb=tf/2-(sqrt(a2*tf2-4*a*(qf-q0)))/(2*a);V=a*tb;t1=[0:0.01:tb];q1=q0+V/(2*tb)*t1.2;dq1=a...

2 years ago

1 answers
109 views
0
Python subplot. I'm asking you a question

fig, ax = plt.subplots(5, 2)ax[0, 0].plot(temp[:144], 'r') ax[0, 1].plot(temp[144:144*2], 'r') ax[1, 0].plot(temp[144*2:144*3], 'y') ax[1, 1].plot(temp[144*3:144*4], 'y') ax[2, 0].plot(temp[144*4:144*...

2 years ago

2 answers
90 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...

2 years ago

1 answers
111 views
0
Python, ask 3D scatter plot to set up annotation

import matplotlib.pyplot as pltfrom mpl_toolkits.mplot3d import Axes3D%matplotlib notebookfig = plt.figure(figsize = (10,10))ax = fig.add_subplot(111, projection='3d')ax.scatter(np.log10(yie[pot.index...

2 years ago

1 answers
124 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...

2 years ago

1 answers
104 views
0
How do I change the size of the picture made of matplotlib?

How can I change the size of the picture made with matplotlib?Without overwriting or creating anything new!

- 1 - »

© 2024 OneMinuteCode. All rights reserved.