Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
vhhn
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
vhhn
8mo ago
Me too. Training a neural net of this scale is basically a lossy compression and promting just an interpolation of the data. But explain this to lawyers and courts...
2.
▲
by
vhhn
8mo ago
Anyone else worries that by contributing to open source software these days one is also digging his/her own grave?
3.
▲
by
vhhn
11mo ago
Or Linux
4.
▲
by
vhhn
1y ago
There are so many options to emded R in any kind of system. Thanks to the C API, there are connectors for any if the traditional language. There is also RServe and plumber for inter-process interaction. Managing dependencies is also super e
5.
▲
by
vhhn
2y ago
Latvian? I've always thought OnlyOffice is developed in Russia.
6.
▲
by
vhhn
2y ago
Unlike many other languages, R has a native/built-in tabular data structure. So when your data have tabular structure R is by far the best glue for building pipes between external libreries. If the data fits in RAM it literally doesn&#
7.
▲
by
vhhn
2y ago
We use embedded R in production in a way some other companies would use Python and I can say having a better compiler would definitely help. Even if most people use R interactively, having contributers working on compiler has many positive
8.
▲
by
vhhn
3y ago
Fun story. My first computer too. Got it from my uncle without any manuals, we spend a whole afternoon writing down a code of a game from a magazine letter by letter. We thought we will just press the "Start" functional key on the
9.
▲
by
vhhn
4y ago
Exactly my experience. I have never bought another Apple device since then.
10.
▲
by
vhhn
4y ago
There are still several areas where R beats Python: tabular data crunching, data analysis (plotting, stats), finance (econometrics etc...) but it's less and less obvious.
11.
▲
by
vhhn
4y ago
Mapy.cz even used to have a great Symbian client with navigation and all, very low battery drain. It was awasome.
12.
▲
by
vhhn
5y ago
There are several factors that make healthcare a specific type of product that laissez-faire markets fail to efficiently produce by nature: * tight connection to insurance * typical consumer-producer relation relation broken into consumer(p
13.
▲
by
vhhn
5y ago
> that doesn’t randomly crash after 30 minutes that rules out any Adobe product :)
14.
▲
by
vhhn
5y ago
This an amazing resource. Thanks!
15.
▲
Chinese government to ditch Windows in the next three years
(techradar.com)
2 points
by
vhhn
5y ago
|
0 comments
16.
▲
by
vhhn
5y ago
Actually, all of them (kdeconnect, firefox, nextcloud) have pretty good Android clients
17.
▲
by
vhhn
5y ago
consider starting a family :-)
18.
▲
by
vhhn
5y ago
> OpenBLAS is incompatible with application threads R is single-threaded.
19.
▲
by
vhhn
5y ago
I think parent comment was referring to the M-code [0] [0]( https://www.howtoexcel.org/power-query/m-code/ )
20.
▲
by
vhhn
6y ago
There are two camps in the R world - tidyverse and base-R (tiniverse). Its not a coincidence that the author gives an example from the tidyverse ecosystem. Authors and users of tidyverse value other things like consistency and new features
21.
▲
by
vhhn
6y ago
I see. But I think after demeaning X, beta0 will just have a special meaning... log odds of the average case. Nothing more.
22.
▲
by
vhhn
6y ago
You don't want to demean your dependent (response) binary variable. So you almost always want to keep beta0 to control for any imbalance in your dependent var.
23.
▲
by
vhhn
7y ago
Hi Wit, you guys do a great job to make R ready for deployment in production. What do you think of the new renv package?
24.
▲
by
vhhn
7y ago
I was surprised when VSCode snap told me that I should start using different snap to install new versions if VSCode and that my settings would be kept. And it did. So there is some way to respect users settings across snaps at least
25.
▲
by
vhhn
8y ago
m[x,] is for interactive use If you write a function and need stable behavior use m[x,, drop = FALSE]. Problem solved. No need of tideverse (which comes with its own surprises).
26.
▲
by
vhhn
8y ago
RStudio has a server mode as well
27.
▲
by
vhhn
8y ago
Also vim editing is restricted to editor window in the current session. So you can't paste from registers in console or in other RStudio sessions. But its still much better experience to use RStudio markdown than Jupyter for me.
28.
▲
by
vhhn
9y ago
the data.table way: mydt[, newvar := oldvar1/oldvar2] I could not resist.