Message-ID: <74c700de-1db5-6f3d-f917-0b5ff3307e37@gmail.com>
Date: 2020-08-29T19:03:45Z
From: Duncan Murdoch
Subject: serialize does not work as expected
In-Reply-To: <39302768-7fbf-8132-e604-0ee88d8cd050@wiwi.hu-berlin.de>
On 29/08/2020 1:10 p.m., Sigbert Klinke wrote:
> Hi,
>
> is there in R a way to "normalize" a vector from
> compact_intseq/compact_realseq to a "normal" vector?
I don't know if there's a function specifically designed to do that, but
as Henrik proposed, this works:
l_normalized <- unserialize(serialize(l, connection=NULL, version=2))
Duncan Murdoch