This is my dataframe. I am hoping to create a column called tokens that has the tokens for each tweet in the rows.
enter image description here
I tried making the tokens a tibble.
Related
I want to create a column of tokens by tweet with the quanteda package in R. Right now, when I tokenize, it gives me 25,000 rows for all my tweets. However, I want to just have a column filled with the tokens in the same row as the tweet.
I tried the tokens() function in quanteda and tried groupby tweet
I want to make a google form where the user can submit data like the example below
The invoice and invoice date for each form will be the same while the rest of the data will be different. Is there a way to make the form in google sheet where the user can:
input invoice and invoice date only 1 time while the rest is manually inputted
send the result to google sheet with the same format as the table above?
This is unfortunately not possible in Google Forms currently, as each response must be written to a pre-determined row.
One way this might be achieved is by using a single instance of your form for each item in the invoice. Each response can then be appended to the existing sheet; although not an ideal solution, this is probably the best you will get with Google Sheets. See an example of how to do this here
I have access to Twitter API for Academic Research, and I'd like to get the follower count on a given date of a user, or at the time of a tweet.
The doc mentions that "This fields parameter enables you to select which specific user fields will deliver in each returned Tweet.", so I assumed that by adding public_metrics to the users.field, the number of followers can be seen in each returned Tweet, however, in each returned Tweet, I can only see user_id. https://developer.twitter.com/en/docs/twitter-api/tweets/search/api-reference.
Is it even possible to achieve what I want with Twitter API for Academic Research? Is there any other approach to make it?
Thank you so much.
You cannot get the follower count on a specific date; it will always be the count at the time you make the API call.
You may need to add expansions to your API call in order to receive the values you are trying to pull out.
While this question was asked beforehand in the following post:
How to get cid from market and symbol from google finance
The answer didn't actually answer the question. Since google finance no longer allows for historical prices beyond a year unless one inputs the appropriate cid into the URL, how does one get the corresponding cid's in order to directly input into the URL the historical prices of specific times? Is there a table available or something along those lines?
I am trying to sum incoming numbers that are user inputted via Google Forms and then transferred to a Google responses spreadsheet.
I have tried the basic functions in my attempts to solve this, but when new information drops into the responses spreadsheet, the formulas all move down a row since the incoming information is inputted at the highest row that hasn't received the Forms output.
If there is a way to sum the incoming data on a Google spreadsheet that would be great.
If the values you wish to sum happen to be in ColumnsD:E of the responses sheet then:
=ArrayFormula(C2:C101+D2:D101+E2:E101)
in Row2, after a response has been received, of a spare spare column may suit.