Displaying 3 results from an estimated 3 matches for "my_map".
Did you mean:
md_map
2011 Mar 28
2
How to save heatmap as image or pdf
Hello Everyone,
I am using R for creating heatmap from a square matrix. Below is my script
to do so
my_map <- read.csv("Desktop/input.csv", sep=",")
my_matrix <- data.matrix(my_map)
my_heatmap <- heatmap(my_matrix, Rowv=NA, Colv=NA, col = cm.colors(256),
scale="column", margins=c(5,10))
I get a beautiful plot as output, but I could not save this plot as an
imag...
2019 Jan 24
3
[Bug 1319] New: Exporting a map with many elements to JSON will fail
...Priority: P5
Component: nft
Assignee: pablo at netfilter.org
Reporter: mizuno at axsh.net
When exporting a map with many(more than 32?) elements to JSON, broken JSON
will be output.
----
#!/bin/bash
nft "add table ip ttt"
nft "add map ip ttt my_map { type ipv4_addr : ipv4_addr ; }"
for i in $(seq 1 33); do
nft "add element ip ttt my_map { 203.0.113.${i} : 192.0.2.1 }"
done
nft export json | jq .nftables
----
The above script throws the following error:
parse error: Unmatched ']' at line 1, column 4257
This error...
2011 Nov 13
0
[LLVMdev] setSection not working?
I created a GlobalVariable from a ConstantArray. I then used to the
setSection() method on my GlobalVariable. Looking at the ELF file it
does not look like it is where I specified. I gave "new
StringRef("my_map")" to the method.
Is there more that needs to be done? In case it matters this is ToT on Linux.
Thank you