What programming language should I switch to from R for advanced statistics?

0
6
Asked By MathWhiz123 On

I'm a master's student from Romania working on a couple of articles in applied math related to economics and econometrics. I've been using R for my calculations, estimations, and plotting, but I'm running into issues with hypergeometric functions. I need to switch to another programming language that can handle statistics and special functions better. I have limited experience with coding—mostly in R and a bit of C++ from high school. What alternatives would you suggest I try?

2 Answers

Answered By StatStacker92 On

Python with SciPy is your best bet for a smooth transition. The SciPy.special module is really powerful when it comes to hypergeometric and related functions, and you'll find the plotting and estimation greatly resembles R. If you run into performance issues later, you can rewrite some parts in Cython or Numba without losing Python's convenience.

RookieDev -

Thanks for the tip! Sounds promising. I'll definitely check out Python.

Answered By CodeGuru75 On

A lot of people recommend switching to Python, especially with the SciPy library. It's a solid choice and has all the statistical tools you might need, including hypergeometric distribution and functions.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.