Fitting data with coupled ODEs using python package "bumps" - python

I've found online the toolbox bumps (https://pypi.org/project/bumps/) which looks like a well-rounded and easy to use approach to fit data.
I'm interested to fit data described by two coupled ODEs, but, unfortunately, I haven't found any information regarding this procedure on the docs (https://bumps.readthedocs.io/en/latest/index.html).
Does anyone know how to do it?
Thanks in advance

I've ask to the developer on GitHub and he provided two complete examples.
Here the link: https://github.com/bumps/bumps/issues/26

Related

Calculating margins in Statsmodels similar to Stata

Recently, I saw a post about obatining Stata-like margins using Statsmodels:
statsmodels get_margeff() for OLS
A user („tmck“) was working on a implementation in Statsmodels.
I tried to comment under the post to inquire whether there are any new developments, however, I could not (obviously, one needs a track record of postings before comments are allowed).
Does anyone know more? Has something already been developed? When will there be a possiblity to calucalte margins with Statsmodels in the same way as with Stata or the ‚margins‘ package in R (https://cran.r-project.org/web/packages/margins/vignettes/Introduction.html).
Best and thanks in advance

How to use iGraph for a given dataset and find all the graph properties

Given this dataset http://konect.uni-koblenz.de/networks/contiguous-usa I am supposed to find Centrality Measures like Degree Centrality, Stress Centrality, Betweenness and graph medians. So how can this problem be solved using iGraph. How to load the given dataset, I am new with this so can anyone help me out?
Come on, there are a bunch of tutorials for igraph, including on the official website.
python-igraph Manual
Tutorial Igraph with Python
A Walk on Python-igraph
...
I think a more appropriate approach is to first read a few of these tutorial and try to follow them, then use online documentation if you have some difficulties with certain things you want to do, and then only come to StackOverflow to ask precise questions on specific points.

Running CHAID on continuous predictors

Please, did anyone try to run CHAID algorithm on continuous predictors ??
At first, I used SPSS Modeler and it worked fine.
but when I tried it on Python 3.6, it didn't work for me.
Thanks :)
P.S. CHAID package could be found here :
https://github.com/Rambatino/CHAID
I'm the author of that library.
It's usually better to post on the issues tab on the github repo as questions have more visibility there.
Unfortunately, with regards to continuous predictors, they need to be binned first before they can be run using CHAID. We haven't implemented a binning strategy as it's very subjective (SPSS makes a lot of decisions under the hood).

Which model to use when mixed-effects, random-effects added regression is needed

So mixed-effects regression model is used when I believe that there is dependency with a particular group of a feature. I've attached the Wiki link because it explains better than me. (https://en.wikipedia.org/wiki/Mixed_model)
Although I believe that there are many occasions in which we need to consider the mixed-effects, there aren't too many modules that support this.
R has lme4 and Python seems to have a similar module, but they are both statistic driven; they do not use the cost function algorithm such as gradient boosting.
In Machine Learning setting, how would you handle the situation that you need to consider mixed-effects? Are there any other models that can handle longitudinal data with mixed-effects(random-effects)?
(R seems to have a package that supports mixed-effects: https://rd.springer.com/article/10.1007%2Fs10994-011-5258-3
But I am looking for a Python solution.
There are, at least, two ways to handle longitudinal data with mixed-effects in Python:
StatsModel for linear mixed effects;
MERF for mixed effects random forest.
If you go for StatsModel, I'd recommend you to do some of the examples provided here. If you go for MERF, I'd say that the best starting point is here.
I hope it helps!

AdaBoost ML algorithm python implementation

Is there anyone that has some ideas on how to implement the AdaBoost (Boostexter) algorithm in python?
Cheers!
It looks as if the sdpy project has an AdaBoost implementation. Specifically look at the sdpy/cs/ml/cla/boosting.py file.
Perhaps you can get some motivation from there.
Thanks a million Steve! In fact, your suggestion had some compatibility issues with MacOSX (a particular library was incompatible with the system) BUT it helped me find out a more interesting package : icsi.boost.macosx. I am just denoting that in case any Mac-eter finds it interesting!
Thank you again!
Tim

Categories

Resources