Now, I am studying tensor. but I cannot draw a point graph with a tensor.
if I have training data samples for example
train_X = numpy.asarray([3.3, 4.4, 5.5, 6.71, 6.93, 4.168, 9.779])
train_Y = numpy.asarray([1.7, 2.76, 2.09, 3.19, 1.694, 1.573, 3.366])
I want to show scatter plots using a tensogram. I know that "import matplotlib.pyplot as plt" can do this. but I can just use the console (putty). therefore, cannot use this method.
Can I see a scatter graph, for example, scatter plots using a tensogram.
Can anybody help me?
source
share