2
在KDB中,我可以使用^替換Null爲0,但這不適用於文本。有人知道怎麼做這個嗎?謝謝。如何用KDB中的空白替換空值?
注:
a:0n
0^a
0
`a^a
ERROR: 'type
(wrong type)
在KDB中,我可以使用^替換Null爲0,但這不適用於文本。有人知道怎麼做這個嗎?謝謝。如何用KDB中的空白替換空值?
注:
a:0n
0^a
0
`a^a
ERROR: 'type
(wrong type)
可以使用相同的填充功能的字符串中替換空字符空字符是 「」
q)"_"^"Spaces are nulls"
"Spaces_are_nulls"
對於符號:
q)`n^`list```of``symbols```with`nulls
`list`n`n`of`n`symbols`n`n`with`nulls
在你的例子,它看起來像你想用符號替換空浮動。 類型混合使得這更加複雜。以下作品:
q)a:0n
q)anyTypeFill:{$[null y;x;y]}
q)anyTypeFill[`a;a]
`a
q)anyTypeFill[`a;] each 0n 1 2 0n 3 5 0n
`a
1f
2f
`a
3f
5f
`a