- On the EC2 instance, type
ssh-keygen
. - Got to: GitHub » Settings » SSH and GPG keys » New SSH Key
- Give it a title and copy the contents of
~/.ssh/id_rsa.pub
in the EC2 into the Key box. - To check the success, type
ssh [email protected]
on the EC2.
jupyter nbconvert --to html notebook.ipynb
Merging two data frames sharing columns with the same name, those columns will receive .x
and .y
suffixes for the first and the second merged data frame.
Follow this example to renew those columns.
(test <- data.frame(a = 1:5, b.x = 6:10, b.y = 11:15, c.x = 16:20, c.y = 21:25))
NewerOlder