Update exercises12.md
This commit is contained in:
parent
ae83ee9d03
commit
4f7ab0ac1b
@ -90,7 +90,7 @@ in `target_df`.
|
|||||||
This is short, but you need to have a good understanding of Julia types
|
This is short, but you need to have a good understanding of Julia types
|
||||||
and standar functions to properly write it:
|
and standar functions to properly write it:
|
||||||
```
|
```
|
||||||
Symbol.(target_df.id) == keys(edges_json)
|
Symbol.(target_df.id) == collect(keys(edges_json))
|
||||||
```
|
```
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
@ -115,7 +115,7 @@ function edgelist2graph(edgelist)
|
|||||||
end
|
end
|
||||||
return g
|
return g
|
||||||
end
|
end
|
||||||
target_df.egonet = edgelist2graph(values(edges_json))
|
target_df.egonet = edgelist2graph.(values(edges_json))
|
||||||
```
|
```
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
Loading…
Reference in New Issue
Block a user