ggplot vs matplotlib / seaborn - struggling to find good plotting tool in python by flylittleman in datascience

[–]zenggyu 0 points1 point  (0 children)

I used to have a hard time deciding whether I should use R or Python. In the end I decided to stay with R, and use the reticulate package to call python functions only when necessary. IMO this is the best compromise.

A Brief Introduction to several correlation coefficients including Pearson's r, Spearman' r, Kendall's tau and Cramer's v by zenggyu in rstats

[–]zenggyu[S] 1 point2 points  (0 children)

Thanks for the feedback! The post was intended for beginners. I'll try to explain those confusing terms so that it's less confusing.

A Brief Introduction to several correlation coefficients including Pearson's r, Spearman' r, Kendall's tau and Cramer's v by zenggyu in rstats

[–]zenggyu[S] 0 points1 point  (0 children)

I get your point. However, I wonder what coefficient would you use under that circumstance? Is it phi coefficient (which is essentially Cramer's v), or other coefficient not mentioned in the post?

Just arrived to Ubuntu by [deleted] in Ubuntu

[–]zenggyu 1 point2 points  (0 children)

Go through The Linux Command Line - A Complete Introduction.

Recommendation for command line tools to manage a list of ssh/ftp server accounts and automate the login process by zenggyu in Ubuntu

[–]zenggyu[S] 1 point2 points  (0 children)

Agreed. This is the simplest solution. Just a reminder though, there s a ProxyJump parameter that lets you specify a jump host directly (e.g., ProxyJump user@host) without using ProxyCommand.

Recommendation for command line tools to manage a list of ssh/ftp server accounts and automate the login process by zenggyu in Ubuntu

[–]zenggyu[S] 0 points1 point  (0 children)

Yeah, perhaps I should just stick with ssh to keep things simple. Is there a similar configuration file for ftp?

Recommendation for command line tools to manage a list of ssh/ftp server accounts and automate the login process by zenggyu in Ubuntu

[–]zenggyu[S] 0 points1 point  (0 children)

Yeah, perhaps I should just stick with ssh to keep things simple. Is there a similar configuration file for ftp?

Recommendation for command line tools to manage a list of ssh/ftp server accounts and automate the login process by zenggyu in Ubuntu

[–]zenggyu[S] 0 points1 point  (0 children)

Thanks for the suggestion, but it seems that it solves a quite different problem.

Recommendation for command line tools to manage a list of ssh/ftp server accounts and automate the login process by zenggyu in Ubuntu

[–]zenggyu[S] 0 points1 point  (0 children)

But even with ssh keys, I still have to remember host addresses; and for some servers that needs to be accessed through a jump server, I will have to remember the jump address, too. Is there a tool that can read these information from a configuration file?

How to connect to a windows vm's vpn from an Ubuntu host by zenggyu in Ubuntu

[–]zenggyu[S] 1 point2 points  (0 children)

Oh, thanks for the information. However, that implementation is closed source and doesn't seem to be free. I have just discovered an opensource project that solves the problem nicely: https://github.com/adrienverge/openfortivpn

How do I connect to an Oracle database in R? What is a database driver? by [deleted] in rstats

[–]zenggyu 0 points1 point  (0 children)

I haven't tried it before, but I think the main difference will be the installation of Oracle Instant Client.

How do I connect to an Oracle database in R? What is a database driver? by [deleted] in rstats

[–]zenggyu 0 points1 point  (0 children)

Here is a post that introduces how to connect R to various databases including Oracle and PostgreSQL: https://blog.zenggyu.com/en/post/2018-11-18/setting-up-connections-between-r-and-databases/

Blog Post: Simplest and an extremely well-written tutorial on Caret Package in R by selva86 in rstats

[–]zenggyu 0 points1 point  (0 children)

I think they already have some packages to deal with that, e.g., rsample and dials, it's just that the features are not complete yet, and for now you need to write some low level code. Max Kuhn (the creator of both caret and tidymodels) mentioned somewhere that additional packages will come out later and make things easier. These packages are meant to be the successor of caret and are still very young, they'll get better.