No, str objects do not have an isnumeric method. isnumeric is only available for unicode objects. In other words:
>>> d = unicode('some string', 'utf-8')
>>> d.isnumeric()
False
>>> d = unicode('42', 'utf-8')
>>> d.isnumeric()
True
Answer from Alexander Ejbekov on Stack OverflowI am trying to plot a .txt file of lines of the form: filename.txt date magnitude V098550.txt 362.0 3.34717962317 but I am getting the error "numpy.float64' object has no attribute 'replace'". Does anyone know if this is a syntax error with numpy, or how I can resolve my issue?
import numpy as np
import matplotlib.pyplot as plt
x, y = np.loadtxt ("condensed.txt", usecols=(1, 2),
delimiter=",", unpack=True)
for ii in range (len(x)): x[ii].replace('.txt', '.lc\n') jd, npmag = np.loadtxt ("/net/jovan/export/jovan/oelkerrj/Vela/rotation/Vela/"+x[ii], usecols= (1, 2), unpack=True)
plt.scatter (jd, npmag)
plt.xlabel ('Time')
plt.ylabel ('Mag')
plt.ylim ([max (npmag), min (npmag)])
plt.show() # aftertest comment this out
fileName = x[ii][:-3] + ".png"
plt.savefig(fileName)print "done"
python - Why isn't isnumeric working? - Stack Overflow
python - AttributeError: 'numpy.float64' object has no attribute 'log10' - Stack Overflow
linear_model giving AttributeError: 'numpy.float64' object has no attribute 'exp'
[deleted by user]
What causes the 'numpy float64 object has no attribute isnull' error in Python?
How can I fix the 'numpy float64 object has no attribute isnull' error in Python?
What are some additional tips to avoid the 'numpy float64 object has no attribute isnull' error in Python?
No, str objects do not have an isnumeric method. isnumeric is only available for unicode objects. In other words:
>>> d = unicode('some string', 'utf-8')
>>> d.isnumeric()
False
>>> d = unicode('42', 'utf-8')
>>> d.isnumeric()
True
isnumeric() only works on Unicode strings. To define a string as Unicode you could change your string definitions like so:
In [4]:
s = u'This is my string'
isnum = s.isnumeric()
This will now store False.
Note: I also changed your variable name in case you imported the module string.
numpy.log10 is a "ufunc", and the method Series.apply(func) has a special test for numpy ufuncs which makes test.apply(log10) equivalent to np.log10(test). This means test, a Pandas Series instance, is passed to log10. The data type of test is object, which means that the elements in test can be arbitrary Python objects. np.log10 doesn't know how to handle such a collection of objects (it doesn't "know" that those objects are, in fact, all np.float64 instances), so it attempts to dispatch the calculation to the individual elements in the Series. To do that, it expects the elements themselves to have a log10 method. That's when the error occurs: the elements in the Series (in this case, np.float64 instances) do not have a log10 method.
A couple alternative expression that should do what you want are np.log10(test.astype(np.float64)) or test.astype(np.float64).apply(np.log10). The essential part is that test.astype(np.float64) converts the data type of the Series object from object to np.float64.
I had a similar error message when using the standard deviation (np.std) instead of np.log10:
'AttributeError: 'numpy.float64' object has no attribute 'sqrt',
and this although I had previously converted the Pandas object X to a numpy array via np.asarray(X).
I could solve this problem by applying the above-mentioned solution:
X = pd.read_excel('file.xls')
Y = np.asarray(X).astype(np.float64)
Z = np.std(Y,axis=0)
I have a column filled with ints however whenever I try to run the quantile function on this column I keep getting the above error. Also min and max functions are not returning correct values. Any suggestions