NaN is an abbreviation for "Not a Number"

learn more… | top users | synonyms

3
votes
1answer
29 views

How to replace values with None in Pandas data frame in Python?

Is there any method to replace values with None in Pandas in Python? You can use df.replace('pre', 'post') and can replace a value with another, but this can't be done if you want to replace with ...
0
votes
4answers
54 views

What causes isNaN to malfunction? [duplicate]

I'm simply trying to evaluate if an input is a number, and figured isNaN would be the best way to go. However, this causes unreliable results. For instance, using the following method: function ...
1
vote
0answers
37 views

NaN value generated for large input while finding standard deviation of numbers with map-reduce?

I used the code given here and modified it to find standard deviation of numbers. The input is a file containing only numbers, separated by \n. I am generating the input using a C code for random ...
0
votes
1answer
12 views

rrdtool: Use Consulidation-Function MIN, exclude NaN Values

i have an archive which contains the minimum duration times of messages going through an enterprise service bus. During night-time or on weekends it is possible, that there are no messages, so the ...
0
votes
4answers
22 views

Trying to add up an array, but result returns NaN

So I have a string called hoursString that looks like 4.3|2.4|3.4|3.0|2.64|3.0|1.0|0.0|2.6|3.4| I split the string into an array and what I am trying to do is add up all the numbers and return it ...
0
votes
0answers
33 views

input text box get NaN value

I want write a sum of values in a textbox. For that I have this two parts of code: http://pastebin.com/N2jnaQ4x Conclusion: I get the value 'NaN' in textbox. I have tried many things with ...
4
votes
2answers
96 views

How to divide by zero without error

i need to obtain float NaN and infinity, but i can't use such constructions 0. / 0. 1. / 0. because it cause compile time error C2124: divide or mod by zero EDIT, it is cool to have answers ...
2
votes
1answer
35 views

Python: change numpy array with NaNs to array with numbers and '--'

I have a numpy array with some floats and some nans: a = [ 8.08970226 nan nan 8.30043545 nan nan nan nan] I want to convert it to an array (for printing in Latex) to the mixed form: a = ...
0
votes
2answers
65 views

How can I get this array equation to work?

I have written some Javacript code that calculates the lineal footage of multiple values that are typed in by the user. Here is the Javascript code... var totalLinealFootage = 0; for (var i = 0; i ...
2
votes
2answers
45 views

Check for NaN in ClojureScript

How can I check if a value is NaN? I'd prefer a solution that can be used in Clojure too without much extra stuff (so I don't want to use an external library, such as underscore). Here is what I ...
1
vote
0answers
42 views

Image Processing Issue: Fill NaNs in image, which mostly consists of NaNs

I have a dataset / image DD like the one in this image: (by the way: is there a way of uploading small data sets here, so that you can actually work with the same data I use, without having to put ...
0
votes
2answers
47 views

What am I doing wrong (Javascript UpdateClock)

I've been trying to make a simple javascript code that displays the time, but when I set the array and attach it to the currentDay it appears as 'NaN' can y'all help me out please? =] Here's the code: ...
2
votes
2answers
39 views

Cellfun is reordering my matrix when I try to clear the NaN's from it

I am having some trouble with Matlab right now. I am currently trying to remove all the NaN's from a large Cell Array I have 3806 x 122. I have been looking at solutions from similar problems, and I ...
0
votes
0answers
11 views

Removing NaN and Infinity in a report

I am trying to generate a report that uses and expression to show a % difference between 2 values from other expressions. I am relatively new to reporting in Visual Studio and have tried most tricks I ...
1
vote
1answer
42 views

How can I get rid of Nans in Matlab analyzing stock prices?

I have a file with a huge amount of data. Places where there is no information about prices are marked as NaN. I would like to delete all rows, where there are such names and delete all columns where ...
0
votes
1answer
12 views

How to check if value is nan in unittest?

I've got functions, which sometimes return NaNs with float('nan') (I'm not using numpy). How do I write a test for it, since assertEqual(nan_value, float('nan')) is just like float('nan') == ...
0
votes
2answers
35 views

Meaning of nan and similar values in ObjC

I have come across the nan value in some of my code and I know how to handle it, but when trying to explain what exactly nan means, I realized I'm not sure myself. There are also some similar odd ...
3
votes
2answers
50 views

Why is “\n” a number “NaN” in Javascript

In JavaScript on Chrome and Firefox: isNaN( "\n" ) gives false parseFloat ( "\n" ) gives NaN The same is yielded for \t, \r and \f.' \n is a number Parsed \n gives you Not A Number. Escaped ...
2
votes
1answer
57 views

Ajax return value is a NaN in Internet Explorer, yet it is fine with Chrome & Firefox

I am using JQuery & Ajax to retrieve a number from the database. If I alert this as soon as it is recovered, Chrome & Firefox popups will display "7", "5" or whatever the number maybe. In ...
0
votes
1answer
18 views

ImpactJS - variable values valid until passed to class constructor then become NaN

Sorry for the long post, but i wanted to be as detailed as possible So i'm creating a plugin with a couple custom ig.Class instances. one is a Vector implementation: Vec2 then i have a particle ...
0
votes
3answers
129 views

C/C++ NaN constant (literal)?

Is this possible to assign a NaN to a double in C/C++? Like in JavaScript you do: a = NaN. So later I can check if the variable is a number or no.
1
vote
0answers
42 views

NoSuchElementException when formatting number on Android, but not on Java SE

I am porting an existing application to Android, and stumbled upon the following problem. This piece of code works perfectly fine on Java SE: String NAN_STRING = ""; DecimalFormatSymbols ...
1
vote
2answers
94 views

C/C++ NaN resolution

When I'm running some code I have to add up the elements of a vector and then renormalize. I'm getting NaN so I'm hoping to resolve this. For example, when x = [1,2,3] is a vector<double> I ...
1
vote
2answers
87 views

Comparing nan (greater and greater equal)

I already know that if(nan != nan) -> TRUE, which is quite logical (sqrt(-1) has to be unequal to 0/0). The following line of code is also logical: if(nan > 90.0f) -> FALSE ...nan is not ...
0
votes
0answers
60 views

How to Sum the 2 result query from jquery

how can I sum 2 number from jquery. What I'm doing here is a chained select, my first select is Product (book), if they select jquery will display the price. my second select is Page (how many page) ...
0
votes
0answers
12 views

Setting NotANumberSymbol to an empty string?

why NSNumberFormatter's method setNotANumberSymbol:(NSString *)string ignores the empty string as a parameter (@"")? It even ignores the string, if it contains only spaces and zeros (@" 0 0 0 ")? Is ...
0
votes
1answer
115 views

jquery - how to add two variables from .html()

I'm new to this and struggling to understand. How can I add two variables with .html(). All i got is Nan (not a number) or [object Object]. I've already tried parseInt and +. ...
3
votes
5answers
105 views

Signaling or catching 'nan' as they occur in computations in numerical code base in c++

We have numerical code written in C++. Rarely but under certain specific inputs, some of the computations result in an 'nan' value. Is there a standard or recommended method by which we can ...
0
votes
1answer
26 views

Why i get NAN value when storing mmioRead result in double?

Why i get NAN value when trying to read .wav file and directly store it sample data in double? Before thinking about using this i was store the sample data in smallint and then convert it to double by ...
0
votes
1answer
81 views

implementation of isnan() function

I am a beginner to c++ programming and I am given a task of implementation of fixed point math arithmetic in c++. here I am trying to implementation a function isnan() which returns true if the ...
0
votes
2answers
75 views

C++ returns NaN after a sum

I'm running the following code: double Scos [61][61][61] = {0}; double kdotr; int ik; int howmany [34] = {0}; auto Fs_ = initializer_list<int>({0}); copy(Fs_.begin(), ...
0
votes
1answer
36 views

Trouble with NaNs: set_index().reset_index() corrupts data

I read that NaNs are problematic, but the following causes an actual corruption of my data, rather than an error. Is this a bug? Have I missed something basic in the documentation? I would like the ...
0
votes
2answers
78 views

Floating point - NaN

I am working on a research project on java in which some tough calculations have to be done. However I am done with most part but stuck at a point.. I have to calculate the following : (2.1-2.3) ...
0
votes
3answers
60 views

I am getting NaN for an answer to my quadratic equation calculator- JAVA

This is my main class: import java.util.Scanner; public class calc { public static void main(String[] args){ Scanner variablea = new Scanner(System.in); Scanner variableb = new ...
0
votes
0answers
16 views

Apache commons Mann Whitney U Test returning P Value NaN

I'm not sure what else to include here. I'm using the Apache commons statistics library for the Mann Whitney U Test, and sometimes it's returning a P Value that is "NaN". It's seemingly random, but ...
3
votes
3answers
87 views

fixedpoint implementation of function bool isnan( … ) in C++

i am doing fixed point implementation in c++ and i am trying to define “not-a-number” and support a function bool isnan( … ) which returns true if the number is not-a-number and false otherwise. can ...
1
vote
1answer
66 views

Fill in missing pandas data with previous non-missing value, grouped by key

I am dealing with pandas DataFrames like this: id x 0 1 10 1 1 20 2 2 100 3 2 200 4 1 NaN 5 2 NaN 6 1 300 7 1 NaN I would like to replace each NAN 'x' with the ...
5
votes
2answers
81 views

How do I Convert NaN to a 0?

When a value is not entered in one of my forms, it creates a later result of NaN in the javascript. I just want to declare anytime NaN would show that it would instead show 0. I thought that by simply ...
1
vote
2answers
48 views

Matlab returning only NANs from a vector that has NaNs and non-NaNs

I have simulation data in a vector of size 50,000 x 1, which has NaNs and non-NaNs. I would like to average the non-NaNs, but the function nanmean returns NAN. I have tried removing the NANs, but I ...
-3
votes
4answers
92 views

Double data Type Parse “NaN” as “NaN” Why? [closed]

I'm parsing the "NaN" value in to double and it is giving me as "NaN". double d = Double.parseDouble("NaN"); System.out.println(d); It is printing the "NaN" value. I am surprised because I would ...
0
votes
3answers
95 views

Javascript number is NaN

I've been looking around and I can't seem to find out why this is happening or how to fix it. I've been trying different things for about 2 days, now its time to ask for help before I rip the rest of ...
1
vote
3answers
78 views

Javascript shows NaN in wrong form-field in IE - works in Firefox and chrome

I am trying to setup a small article chooser. While it works in Firefox and Chrome, as well as IE7, it has problems on IE8 and IE9. In IE 8 and 9 it changes to "increase" field to "NaN" when ...
-1
votes
1answer
55 views

Finding the neighbourhood of certain pixels

I have an image which matrix has some pixels with value NaN. For such certain pixel, I want to compare its 8-neighbourhood, and assign it a value based on that neighborhood. I think for the ...
0
votes
1answer
47 views

getting “NaN” results from for loop

First - so sorry for such a long post. I'm trying to be specific! Thanks for reading it :) I have two vectors as follows: popd = vector(mode='numeric', 100) popr = vector(mode='numeric', 100) These ...
3
votes
1answer
61 views

forced conversion of non-numeric numpy arrays with NAN replacement

Consider the array x = np.array(['1', '2', 'a']) Tying to convert to a float array raises an exception x.astype(np.float) ValueError: could not convert string to float: a Does numpy provide any ...
0
votes
2answers
48 views

which one is correct? alert((+“123”)) alert(+“123”) alert(+(“123”))

I'm trying to convert a string to a float. I know that parseFloat() can do that, but I've also found the syntax below, but without much reference. What is the correct syntax, because they all seem to ...
0
votes
1answer
35 views

NaN returned from this code

This code will not print our the roomC instead it returns nan I have traced back through the code and determined that the code var minR = (Game.height * Game.width) / 300; var maxR = (Game.height * ...
0
votes
2answers
53 views

MatLab - Padding arrays with something that wont be valued?

I'm comparing arrays of different sizes to find matches Results = (DistancesB >= DistancesA * 0.1 & DistancesB < DistancesA * 1.5); % anything in this thres is matched the arrays need to ...
0
votes
0answers
38 views

Jquery Array 1st returns number rest NaN

I tried parseInt and parseFloat. tot[0] always returns a number. I made sure the code goes wrong at this point by using the console.log command. tot[1-9] returns NaN . I tried using a while loop and a ...
0
votes
3answers
28 views

append string with matched substring

Im having issues with formatting a string received from the Twitter API. Im using timeago plugin and returns NaN in IE 10. After hunting it down it seems to be because the time recieved is formatted ...

1 2 3 4 5 9