Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Can one output something other than 'nan' for not a number values?

211 views
Skip to first unread message

Chris Green

unread,
Feb 16, 2024, 5:18:17 PMFeb 16
to
I'm looking for a simple way to make NaN values output as something
like '-' or even just a space instead of the string 'nan'. This would
then make it much easier to handle outputting values from sensors when
not all sensors are present.

So, for example, my battery monitoring program outputs:-

Battery Voltages and Currents
Leisure Battery - 12.42 volts -0.52 Amps
Starter Battery - 12.34 volts -0.01 Amps

If the starter battery sensor has failed, or is disconnected, I see:-

Battery Voltages and Currents
Leisure Battery - 12.42 volts -0.52 Amps
Starter Battery - nan volts nan Amps


What I would like is for those 'nan' strings to be just a '-' or
something similar.

Obviously I can write conditional code to check for float('nan')
values but is there a neater way with any sort of formatting string or
other sort of cleverness?


--
Chris Green
·

Cameron Simpson

unread,
Feb 17, 2024, 12:06:21 AMFeb 17
to
The simplest thing is probably just a function writing it how you want
it:

def float_s(f):
if isnan(f):
return "-"
return str(f)

and then use eg:

print(f'value is {float_s(value)}')

or whatever fits your code.

Cheers,
Cameron Simpson <c...@cskk.id.au>

Lawrence D'Oliveiro

unread,
Feb 17, 2024, 12:48:30 AMFeb 17
to
On 17 Feb 2024 01:13:48 GMT, Stefan Ram wrote:

> ... and value != value ...

Really?

Grant Edwards

unread,
Feb 17, 2024, 6:52:23 PMFeb 17
to
On 2024-02-16, Chris Green <c...@isbd.net> wrote:

> I'm looking for a simple way to make NaN values output as something
> like '-' or even just a space instead of the string 'nan'.

I tried monkey-patching the __format__ method of float, but it's
immutable, so that didnt' work. Is float.__format__ what's used by
f-strings, the % operator, etc.?

--
Grant

Piergiorgio Sartor

unread,
Feb 18, 2024, 9:09:01 AMFeb 18
to
Uhm, I cannot see how to avoid conditional code.

Somewhere, function, class, method, there should be
an "if isnan(x)".

You can hide that, but you cannot avoid, I suspect.

bye,

--

piergiorgio

Grant Edwards

unread,
Feb 18, 2024, 2:46:06 PMFeb 18
to
On 2024-02-16, Chris Green via Python-list <pytho...@python.org> wrote:

> I'm looking for a simple way to make NaN values output as something
> like '-' or even just a space instead of the string 'nan'.

It would probably help if you told us how you're "outputting" them now
(the Python feaatures/functions used, not the actual output format).

Are you using f-strings, the % operator, str.format(), or ??

I would be tempted to try monkey-patching the float class to override
the __format__ method. I have no idea what side effects that might
have, or if it's even used by the various formatting mechanisms, so
you might end up scraping bits off the walls...

--
Grant

Grant Edwards

unread,
Feb 18, 2024, 2:46:06 PMFeb 18
to
On 2024-02-17, Cameron Simpson via Python-list <pytho...@python.org> wrote:
> On 16Feb2024 22:12, Chris Green <c...@isbd.net> wrote:
>>I'm looking for a simple way to make NaN values output as something
>>like '-' or even just a space instead of the string 'nan'.
>>[...]
>>
>> Battery Voltages and Currents
>> Leisure Battery - 12.42 volts -0.52 Amps
>> Starter Battery - nan volts nan Amps
>>
>>What I would like is for those 'nan' strings to be just a '-' or
>>something similar.

> The simplest thing is probably just a function writing it how you want
> it:
>
> def float_s(f):
> if isnan(f):
> return "-"
> return str(f)
>
> and then use eg:
>
> print(f'value is {float_s(value)}')
>
> or whatever fits your code.

Except he's obviously using some sort of formatting to control the
number of columns and decimal places, so 'str(f)' is not going to cut
it. Is the basic floating point number formatting functionality seen
when using f-strings or '%' operator part of the float type or is it
part of the f-string and % operator?

--
Grant


Grant Edwards

unread,
Feb 18, 2024, 2:46:07 PMFeb 18
to
On 2024-02-17, Cameron Simpson via Python-list <pytho...@python.org> wrote:
> On 16Feb2024 22:12, Chris Green <c...@isbd.net> wrote:
>>I'm looking for a simple way to make NaN values output as something
>>like '-' or even just a space instead of the string 'nan'. [...]
>>
>> Battery Voltages and Currents
>> Leisure Battery - 12.42 volts -0.52 Amps
>> Starter Battery - 12.34 volts -0.01 Amps

> The simplest thing is probably just a function writing it how you
> want it:
>
> def float_s(f):
> if isnan(f):
> return "-"
> return str(f)

Since he's obviously using one of the float formatting mechanisms to
control the number of columsn and decimal places, I doubt str(f) will
meet the need.

I tried monkey-patching the float type's __format__ method, but it's
immutable.

Is float.__format__() what's used by f-strings, the '%' operator, etc.?

--
Grant

Grant Edwards

unread,
Feb 18, 2024, 2:46:07 PMFeb 18
to
On 2024-02-17, Cameron Simpson via Python-list <pytho...@python.org> wrote:
> On 16Feb2024 22:12, Chris Green <c...@isbd.net> wrote:
>>I'm looking for a simple way to make NaN values output as something
>>like '-' or even just a space instead of the string 'nan'. [...]
>>
>> Battery Voltages and Currents
>> Leisure Battery - 12.42 volts -0.52 Amps
>> Starter Battery - 12.34 volts -0.01 Amps

Grant Edwards

unread,
Feb 18, 2024, 2:46:08 PMFeb 18
to
On 2024-02-17, Cameron Simpson via Python-list <pytho...@python.org> wrote:
> On 16Feb2024 22:12, Chris Green <c...@isbd.net> wrote:
>>I'm looking for a simple way to make NaN values output as something
>>like '-' or even just a space instead of the string 'nan'. [...]
>>
>> Battery Voltages and Currents
>> Leisure Battery - 12.42 volts -0.52 Amps
>> Starter Battery - nan volts nan Amps
>>
>>What I would like is for those 'nan' strings to be just a '-' or
>>something similar.
>
> The simplest thing is probably just a function writing it how you want
> it:
>
> def float_s(f):
> if isnan(f):
> return "-"
> return str(f)

He's obviouisly using a formatting feature to control columns and
decimal places, so I doubt that 'str(f)' is going to meet the need.

I tried monkey-patching the __format__ method of the 'float' type, but
it's immutable -- so that didn't work.

Grant Edwards

unread,
Feb 18, 2024, 2:46:10 PMFeb 18
to
[Posts via slrn and my GMail account aren't showing up, so I guess I'll
try
subscribing from a different e-mail address.]

On 2024-02-17, Cameron Simpson via Python-list <pytho...@python.org>
wrote:
> On 16Feb2024 22:12, Chris Green <c...@isbd.net> wrote:
>> I'm looking for a simple way to make NaN values output as something
>> like '-' or even just a space instead of the string 'nan'. [...]
>>
>> Battery Voltages and Currents
>> Leisure Battery - 12.42 volts -0.52 Amps
>> Starter Battery - 12.34 volts -0.01 Amps

> The simplest thing is probably just a function writing it how you
> want it:
>
> def float_s(f):
> if isnan(f):
> return "-"
> return str(f)

Since he's obviously using one of the float formatting mechanisms to
control the number of columsn and decimal places, I doubt str(f) will
meet the need.

I tried monkey-patching the float type's __format__ method, but it's
immutable.

Grant Edwards

unread,
Feb 18, 2024, 2:46:16 PMFeb 18
to
[I've been trying all afternoon to post via slrn, but nothing is
showing up on the list. Forgive me if multiple posts eventually show
up.]

Chris Angelico

unread,
Feb 18, 2024, 2:50:50 PMFeb 18
to
You can try, but you'd have to do it in C - the float type is
immutable in Python.

ChrisA

dn

unread,
Feb 18, 2024, 4:45:03 PMFeb 18
to
On 18/02/24 09:53, Grant Edwards via Python-list wrote:
> On 2024-02-17, Cameron Simpson via Python-list <pytho...@python.org> wrote:
>> On 16Feb2024 22:12, Chris Green <c...@isbd.net> wrote:
>>> I'm looking for a simple way to make NaN values output as something
>>> like '-' or even just a space instead of the string 'nan'.
>>> [...]
>>>
>>> Battery Voltages and Currents
>>> Leisure Battery - 12.42 volts -0.52 Amps
>>> Starter Battery - nan volts nan Amps
>>>
>>> What I would like is for those 'nan' strings to be just a '-' or
>>> something similar.
>
>> The simplest thing is probably just a function writing it how you want
>> it:
>>
>> def float_s(f):
>> if isnan(f):
>> return "-"
>> return str(f)
>>
>> and then use eg:
>>
>> print(f'value is {float_s(value)}')
>>
>> or whatever fits your code.
>
> Except he's obviously using some sort of formatting to control the
> number of columns and decimal places, so 'str(f)' is not going to cut
> it. Is the basic floating point number formatting functionality seen
> when using f-strings or '%' operator part of the float type or is it
> part of the f-string and % operator?

It's part of the PSL's string library: "Format Specification
Mini-Language"
https://docs.python.org/3/library/string.html#format-specification-mini-language

Has the OP stated if we're talking 'Python' or numpy, pandas, ...?

--
Regards,
=dn

Chris Green

unread,
Feb 19, 2024, 7:18:15 AMFeb 19
to
It's using f'{...}' at the moment.

--
Chris Green
·

Chris Green

unread,
Feb 19, 2024, 7:18:15 AMFeb 19
to
Just python, on a Raspberry Pi, so currently Python 3.9.2.

--
Chris Green
·

Grant Edwards

unread,
Feb 19, 2024, 11:58:55 AMFeb 19
to
On 2024-02-19, Chris Green via Python-list <pytho...@python.org> wrote:

> It's using f'{...}' at the moment.

Here's a demonstration of how to hook custom code into the f-string
formatting engine. It's brilliantly depraved.

https://stackoverflow.com/questions/55876683/hook-into-the-builtin-python-f-string-format-machinery

>From the above:

You can, but only if you write evil code that probably should
never end up in production software. So let's get started!

I'm not going to integrate it into your library, but I will show
you how to hook into the behavior of f-strings. This is roughly
how it'll work:

1. Write a function that manipulates the bytecode instructions of
code objects to replace FORMAT_VALUE instructions with calls
to a hook function;

2. Customize the import mechanism to make sure that the bytecode
of every module and package (except standard library modules
and site-packages) is modified with that function.

Final code is here:

https://github.com/mivdnber/formathack

dn

unread,
Feb 19, 2024, 3:12:02 PMFeb 19
to
On 20/02/24 05:58, Grant Edwards via Python-list wrote:
> Here's a demonstration of how to hook custom code into the f-string
> formatting engine. It's brilliantly depraved.
>
> https://stackoverflow.com/questions/55876683/hook-into-the-builtin-python-f-string-format-machinery
>
> From the above:
>
> You can, but only if you write evil code that probably should
> never end up in production software. So let's get started!
>
> I'm not going to integrate it into your library, but I will show
> you how to hook into the behavior of f-strings. This is roughly
> how it'll work:
>
> 1. Write a function that manipulates the bytecode instructions of
> code objects to replace FORMAT_VALUE instructions with calls
> to a hook function;
>
> 2. Customize the import mechanism to make sure that the bytecode
> of every module and package (except standard library modules
> and site-packages) is modified with that function.
>
> Final code is here:
>
> https://github.com/mivdnber/formathack

Some of this (Expression components inside f-strings) newly available in
v3.12 (PEP-701) - which can be used in production...

--
Regards,
=dn

dn

unread,
Feb 19, 2024, 3:17:43 PMFeb 19
to
Concur with earlier advice (and assuming is only a consideration during
output) - use if.

Alternately, encode appropriately during the data-capture phase.


--
Regards,
=dn
0 new messages