Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I would like to get Facebook ad spend data into R for analysis. This is similar to data about adspend that is available from Google Analytics (metric ga:adCost).
I read about the package Rfacebook but I dont think it supports this data retrieval.
Is there any other package or way to get this data into R? I am not familiar with Java etc, so it would be a pity if this can't be done in R.
Thanks
this seems to be what you are working for:
https://github.com/cardcorp/fbRads
slides and examples are here:
https://drive.google.com/file/d/0ByjOYacj5XqBWHlwWUdJcjdrSDQ/view
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
it is possible to send sms messages with r like this
library(httr)
AUTH_ID="MAMJJIMWxxxxxxxxxxxxx"
AUTH_TOKEN="YTVmMzc0ZTY2OThmZjJmYjxxxxxxxxxxxxxxxxxxxx"
message<-"Hi.. How r u ??"
url="https://api.plivo.com/v1/Account/MAMJJIMWU0NJK1MDZMNT/Message/"
POST(url,authenticate(AUTH_ID,AUTH_TOKEN),body=list(src="9191xxxxxxxxxxx",dst="91798xxxxxxxxxx",text=message))
AUTH_ID="MAMJJIMWxxxxxxxxxxxxx"
AUTH_TOKEN="YTVmMzc0ZTY2OThmZjJmYjxxxxxxxxxxxxxxxxxxxx"
message<-"Hi.. How r u ??"
url="https://api.plivo.com/v1/Account/MAMJJIMWU0NJK1MDZMNT/Message/"
POST(url,authenticate(AUTH_ID,AUTH_TOKEN),body=list(src="9191xxxxxxxxxxx",dst="91798xxxxxxxxxx",text=message))
But is there any way to receive sms messages?
I don't see why not. I've used the same method with Python a couple of times in the past for a project, and it worked out the same way. You could probably even do something similar with the Twitter API to automate posts etc.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
In performing network analysis, I want to plot network graph on maps. Ggmap seems the first choice, but it require API access.
Is there any free and equivalent/alternative (to ggmap) options that don’t require API access?
Thank you.
Open Street Map should suit your needs. Here is a package for it: https://cran.r-project.org/web/packages/OpenStreetMap/index.html. More information: https://wiki.openstreetmap.org/wiki/OSM_Scientific_Tools
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Is there any R-package to build an online questionnaire with multiple-choice and open-ended questions whose answers can be conveyed from one user to another? Thanks a lot for your help.
One possibility is to use Survey Monkey for the survey itself and the Rmonkey package (https://github.com/cloudyr/Rmonkey) to analyze and report the survey results. With this approach, the user must have a Survey Monkey account, a Mashery Survey Monkey Developer account, and a registered API application.
You also can use limesurvey, which is free if you have a host server. With the package limer, you can import the responses to R.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Is there any package or API through which I can import the data form Google Play Store to R. I want to import the data for ratings, reviews about my app.
How about rvest? I have tried it on IMDB and it worked great. Google Play Store seems to follow roughly the same format. It should work.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'm trying to get started using some statistical analysis with the limma package that runs out of R. Any one know a good tutorial?
The limma web-page has plenty of material. I've also written a tutorial paper that analyses yeast microarray data using (amongst other things) limma.