user3370773
user3370773

Reputation: 455

Google-analytics framework for predictive analysis

I'm trying to use the google-analytics framework to create predictive analysis tools. For example I would like to cluster my webpage visitors, etc. In general, is there any list of machine learning algorithms implemented by this framework? for example: regression, clustering, classification, feature selection, etc. Thank you for any help

Upvotes: 0

Views: 802

Answers (2)

kushan_s
kushan_s

Reputation: 313

Depending upon your language of choice, you might want to export your Google Analytics Metrics to flat files or a database and then start experimenting with ML models. Two popular languages with stable ML Implementations are Python and R. R's caret package includes tools for building a predictive model pipeline. Python's scikit-learn also contains implementations of all major classes of ML algorithms.

Upvotes: 1

georgez
georgez

Reputation: 735

When you say GA framework I'll assume you're referring to the set of Google Analytics APIs listed here. The framework by itself doesn't provide machine learning capabilities. It merely provides access to the processed and aggregated GA data stored in Google's servers. You can use the API and feed the data to a machine learning application/system/program that does all of the stuff you mentioned.

Upvotes: 0

Related Questions