Questions tagged [analytics]

For questions related to analytics methods and tools. Use it together with the programming language used

Analytics is typically the application of descriptive statistical methods to large data sets. This is usually in contrast to predictive methods, which relate to unseen data or to tasks that are dependent on the outcome of a model. Analytics is often related to reporting on databases and frequently arises in the context of "web analytics" - a field that encompasses analysis of site traffic, online revenue, site usage, and other interests.

Typical languages used for analytics are R , Python (especially Pandas), SPSS and SAS

4895 questions
1
vote
4 answers

track visitor info on every request

Using Asp.net webforms I want to track down visitor info just like Google Analytics does. Of course, I can use Google Analytic for this purpose but I want to know how can I achieve the same thing with Asp.net 3.5 and SQL Server 2008. I want to store…
Nilesh Thakkar
  • 2,877
  • 1
  • 24
  • 43
1
vote
2 answers

Detecting questions in text

I have a project where I need to analyze a text to extract some information if the user who post this text need help in something or not, I tried to use sentiment analysis but it didn't work as expected, my idea was to get the negative post and…
Walid Bousseta
  • 1,329
  • 2
  • 18
  • 33
1
vote
0 answers

How to find when my business is created in google for google my business api

I am trying to find google my business insight for my business since the beginging. How to find when that business or location is registered or created using api . tried getting the gmb insight…
1
vote
0 answers

I have over 200 of these analytics in my phone settings can anyone tell me what they mean please?

I hope someone here can help me, I have s that my partner of the last three years may be tracking my phone and laptop... I found over 200 analytics in my settings on my iphone. I am new to all this and he denies any computer knowledge but I am…
1
vote
0 answers

Apple analytics API without using third party

I have my app uploaded on app store. I want to show its analytics data on my website (installed count, uninstall count etc). For this I have linked my appstore account with appfigures.com.It works fine. With this I have also integrated this. But as…
ki1234
  • 103
  • 1
  • 10
1
vote
2 answers

How to convert column into row?

Assuming I have two rows where for most of the columns the values are same, but not for all. I would like to group these two rows into one where ever the values are same and if the values are different then create an extra column and assign the…
Bala
  • 111
  • 8
1
vote
0 answers

Adding data headers to text files and adding into a csv database

I have 100+ text files containing paragraphs of texts. I would like to manually add headers to the individual text files batch-wise, adding headers such as: "year", "id", "place", "body" to the text files, and then compiling them into a csv. Is…
user3081750
  • 217
  • 2
  • 9
1
vote
1 answer

Google API analytics PHP per day

I am using the google-api-php-client, installed through composer, v2.0. I need to extract the data per day/week/month etc. However, I am only getting the totals. I am probably missing one property, but I can't find anywhere what it should be. This…
LvS
  • 507
  • 1
  • 4
  • 19
1
vote
1 answer

Performing analytics on a script file

I am learning analytics with some friends and recently I was presented with a problem to solve which I am struggling a lot. I was provided a large (around 17000 lines) of a VB.net script (as he works with this) where I am supposed to pair a sub…
1
vote
1 answer

read duplicate metrics in extract schema in U-SQL

` @input =EXTRACT firstname string,name string,name string FROM "/table1.csv" USING Extractors.Csv(quoting : false, silent : true); @output =SELECT * FROM @input; OUTPUT @output TO "/data_output.csv" USING Outputters.Csv(quoting : false);…
steve
  • 79
  • 8
1
vote
1 answer

Get Google Analytics Linker params with multiple trackers on the page

My question is for someone with experience using Google Analytics Linker Plugin programmatically. However my example has a bit complicated setup. I'm currently working on the website which is using Google Tag Manager for loading GA scripts. It loads…
1
vote
0 answers

Trouble coming up with a query to return required statical/analytical information

I have a table in an oracle 11R2 database with the follow structure transactionId, timestamp, logpoint, server, client For example screenshot of structure transactionId timestamp logpoint server client tran-1 …
Anon
  • 25
  • 5
1
vote
1 answer

Can I do binary taint analysis?

I want to analyze the following binary. 4005e0: 55 push %rbp 4005e1: 48 89 e5 mov %rsp,%rbp 4005e4: 48 83 ec 10 sub $0x10,%rsp 4005e8: c7 45 fc 09 00 00 00 movl $0x9,-0x4(%rbp) 4005ef:…
usagi
  • 13
  • 3
1
vote
1 answer

localytics did not give report?

I have registered as free user and integrated localytics in iphone4 app.i have used API Key they have given.but i could not see reports after logging in.i have checked the app through tagging some events.How much time will be taken to give? any…
user141302
1
vote
1 answer

How to organize data for Mutllevel modeling - Decision Tree, Classification, or Regression

I have three tables - Sales Manager, Customer, and Order. Each sales manager has multiple customers, and each customer can have multiple orders. I am interested in determining if certain attributes of sales manager and attributes of customer will…
1 2 3
99
100