2 Instructions Amp Brief Task A We Will Analyse The Top Emoticons Found In The Messa 2732785

2. Instructions & Brief

Task A

We will analyse the top emoticons found in the messages of tweets, from the ‘msgraw_sample.txt’ data used in the tutorial of Week 7. Note this should be done a Linux machine or similar where bash supported.

Task A.1 (4 marks)

The first sub-task is to extract the top 20 emoticons and their counts from the tweets. This must not be done entirely manually, and it can only be done using a single shell script. So you need to write a single shell script ‘tweet2emo.sh’ that will input ‘msgraw_sample.txt’ from stdin and produce a CSV file ‘potential_emoticon.csv’ giving a list of candidate emoticons with their occurrence counts. The important word here is “candidate”. Perhaps only 1 in 5 of your candidates are emoticons. Then you need to edit this by hand, deleting non-emoticons, and deleting less frequent ones, to get your final, list ’emoticon.csv’.

So for this task, you must submit:
(1) a single bash script, ‘tweet2emo.sh’ : this must output, one per line, a candidate emoticon and a count of occurrence, and cannot have any Python or R programmes embedded in it. More details on how to do this below.
(2) the candidate list of emoticons generated by the script, ‘potential_emoticon.csv’ : CSV file, TAB delimited file with (count, text-emoticon).
(3) the final list of emoticons selected, ’emoticon.csv’ : CSV file, TAB delimited file with (count, text-emoticon); these should be the 20 most frequent emoticons from ‘potential_emoticon.csv’, but you will have to select yourself, manually by editing, which are actually emoticons. To do this, you may use an externally provided list of recognised emoticons, but not should be used in step (2).
(4) a description for this task is included in your final PDF report describing the method used for the bash script, and then the method used to edit the file, to get the file for step (3).

Your bash scripts might take 2-5-10 lines and might require storing intermediate files.

The following single line commands, which process a file from stdin and generate stdout should be useful for this task:

perl -p -e ‘s/s+/n/g;’
— tokenise each line of text by converting space characters to newlines;
NOTE: this reportedly also work on Windows where newline character is different

perl -p -e ‘s/>/>/g; s/</
— convert embedded HTML escapes for ‘>’ and ‘
— you need to do this if you want to capture emoticons using the ‘<‘ or the ‘>’ characters, like ‘

sort | uniq -c | perl -p -e ‘s/^s+//; s/ /t/; ‘
— assumes the input file has one item per line
— sort and count the items and generates TAB delimited file with (count, item) entries

Specially, in order to recognise potential emoticons, you will need to write suitable greps. Here are some examples:

grep -e ‘^_^’
— match lines containing the string “^_^”

grep -e ‘^^_^’
— match lines starting with the string “^_^”, the initial “^”, called an anchor, says match start of line

grep -e ‘^_^$’
— match lines ending with the string “^_^”, the final “$”, called an anchor, says match end of line

grep -e ‘^^_^$’
— match lines made exactly of the string “^_^”, using beginning and ending anchors

grep -e ‘^0_0$’
— match lines made exactly of the string “0_0”

grep -e ‘^^_^$’ -e ‘^0_0$’
— match lines made exactly of the string “^_^” or “0_0”; so two match strings are ORed

grep -e ‘^[.:^]$’
— match lines made exactly of the characters in the set “.:^”
— the construction “[ … ]” means “characters in the set ” … ” but be warned some characters used inside have strange effects, like “-“, see next

grep -e ‘^[0-9ABC]$’
— match lines made exactly of the digits (“0-9” means in the range “0” to “9”) or characters “ABC”

grep -e ‘^[-0-9ABC]$’
— match lines made exactly of the dash “-“, the digits, or the characters “ABC”
— we place “-” at the front to stop in meaning “range”

For more detail on grep see:
https://opensourceforu.com/2012/06/beginners-guide-gnu-grep-basics-regular-expressions/
But my advice is “keep it simple” and stick with the above constructs. Remember you get to edit the final results by hand anyway. But if your grep match strings say “7” is an emoticon, it probably isn’t a strong enough filter.

Task A.2 (4 marks)

We would like to compute word co-occurrence with emoticons. So suppose we have the tweet:
loved the results of the game 😉
then this means that emoticon ‘;-)’ co-occurs once with each of the words in the list ‘ loved the results of the game’ once.

You can use the supplied Python program ’emoword.py” which uses a single emoticon, takes ‘msgraw_sample.txt’ as stdin and outputs a raw list of co-occurring tokens.
./emoword.py ‘:))’

Note the emoticon is enclosed in single quotes because the punctuation can cause bash to do weird things otherwise.

You can also put this in a bash loop to run over your emoticon list like so:
for E in ‘;)’ ‘:)’ ‘echo running this emoticon $E
done

or counting them too using

CNT=1
for E in ‘;)’ ‘:)’ ‘echo running this emoticon $E > $CNT.out
CNT=$(( $CNT + 1)) # this is arithmetic in bash
done

But be warned, bash does strange things with punctuation … it treats it differently as it plays a role in the language. So while you can have a loop doing this:

for E in ‘;)’ ‘:)’ ‘

where you have edited in your emoticons, and used the single quotes to tell bash the quoted text is a single token, if instead you try and be clever and read them from a file

for E in `cat emoticons.txt` ; do

then bash well see individual punctuation and probably fail to work in the way you want.

For each emoticon in your list ’emoticon.csv’, find a list of the 10-20 most commonly occurring interesting words. Report on these words in your final PDF report. Note that words like “the” and “in” are called stop words, see https://en.wikipedia.org/wiki/Stop_words, and are uninteresting, so try and exclude these from your report.

So for this task, you must submit:
(1) a single bash script, ’emowords.sh’ : as used to support your answers, perhaps calling ’emoword.py’; this should output for each of your 20 emoticons the most frequent words co-occurring with it (in tweets); use what ever format suits, as the results will be transferred and written up in your report.
(2) a description for this task is included in your final PDF report describing the method used for the bash script, and then the final list of selected interesting words per emoticon, and how you got them.

Task A.3 (2 marks)

See if there are other interesting information you can get about these emoticons. For instance is there anything about countries/cities and emoticons? Which emoticons have long or short messages? Whats sorts of messages are attached to different emoticons?

You can use the Python program ’emodata.py” which reads your ’emoticon.csv’ file, takes ‘msgraw_sample.txt’ as stdin and outputs selected data from the tweet file.
./emodata.py

Report on this in your final PDF report. Use any technique or coding you like to get this information. Your report should describe what you did and your results.

Task B

Consider the two files ‘training.csv’ and ‘test.csv’.

Task B.1 (2 marks)

Plot histograms of X1, X2, X3 and X4 in train.csv respectively and answer: which variable(s) is(are) most likely samples drawn from normal distributions?

Task B.2 (4 marks)

Fit two linear regression models using train.csv.
Model 1: Y~X1+X2+X3+X4
Model 2: Y~X2+X3+X4
Which model has higher Multiple R-squared value?

Task B3 (4 marks)

Now use the coefficients of Model 1 and 2 respectively to predict the Y values of test.csv, then calculate the Mean Squared Errors (MSE) between the predictions and the true values. Which model has smaller MSE? Which model is better? More complex models always have higher R square but are they always better?

3. Assessment Criteria

The work required to prepare data, explore data and explain your findings should be all your own. If you use resources elsewhere, make sure that you acknowledge all of them in your PDF report. You may need to review the FIT citation styletutorial to make yourself familiar with appropriate citing and referencing for this assessment. Also, review the demystifying citing and referencingfor help.

The following outlines the criteria which you will be assessed against.

3.1 Grading Rubric

The following outlines the criteria which you will be assessed against:

  • Ability to read data files and process them using bash and R commands.
  • Ability to wrangle and process data into the required formats.
  • Ability to use various graphical and non-graphical tools for performing exploratory data analysis and visualisation
  • Ability to use basic tools for managing and processing big data;
  • Ability to communicate your findings in your report.

The marks are allocated as follows:

  • Task 1: 10 (=5% of total)
  • Task 2: 10 (=5% of total)

3.2 Penalties
  • Late submission: for all assessment items handed in after the official due date, and without an agreed extension, a 5% penalty applies to the student’s mark for each day after the due date (including weekends, and public holidays) for up to 7 days. Assessment items handed in after 7 days will not be considered.
  • Word limit: There are no firm wording limits on the report. However, as a general guidance, it should not be exceeding 1000 words, excluding other supplementary materials (e.g., slides and transcript). Lengthy reports (i.e., over 1000 words) may incur a loss of mark due to the time limit a marker will spend on the report reading. For instance, they may only read the part within 1000 words and omit rest of the report. Notice that references consisting of URLs can be given at the end of the entry and are not included in the word count.

4. How to Submit

Once you have completed your work, take the following steps to submit your work.

  1. Include the following materials in your submission:
    • A report in PDF containing your answers to all the questions.
      • You can use Word or other word processing software to format your submission. Just save the final copy to a PDF before submitting.
      • Make sure to include in the PDF screenshots/images of any graphs you generate in order to justify your answers to all the questions for both parts A and B.
    • Two bash scripts so named containing the code to complete Task A.1 and task A.2.
    • The two CSV files ‘potential_emoticon.csv’ and ’emoticon.csv’
    • A Jupyter notebook file or plain text R file containing the R code you write to prepare and plot the data for Task B.
    • If you’ve chosen other tools, please include the process of data preparation in your report as an appendix included with the PDF.
 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

2 The Hall Dental Supply Company Sells At 32 Per Share And Randy Hall The Ceo Of Thi 3081297

2.  The Hall Dental Supply Company sells at $32 per share, and Randy Hall, the CEO of this well-known Research Triangle firm, estimates the latest 12-month earnings are $4 per share with a dividend payout of 50%. Hall&#39;s earnings estimates are very accurate.

a.  What is Hall&#39;s current P/E ratio?

b.  If an investor expects earnings to grow by 10% a year, what is the projected price for next year if the P/E ratio remains unchanged?

c.  Ray Parker, President of Hall Dental Supply Company, analyzes the data and estimates that the payout ratio will remain the same. Assume the expected growth rate of dividends is 10% and an investor has a required rate of return of 16%. Explain whether or not this stock would be a good buy and support your rationale.

d.  If interest rates are expected to decline, discuss the likely effect on Hall&#39;s P/E ratio. 

 

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

2 From An Historical Perspective How Has The Labor Market Experience Of Black Women 3297883

2. From an historical perspective, how has the labor market experience of black women and white women differed?

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

2 The Number Of Visitors To The Zoo And The Entrance Fee Is Shown In The Table Below 3291652

2. The number of visitors to the zoo and the entrance fee is shown in the table below: 800 600 400 200 0 0 6 9 12 Calculate the change in consumer surplus if the entrance fee increases from three (3) to nine Euro (9). How does the price increase affect the revenue of the zoo?

Attachments:

101.png

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

2 Glenn Foreman President Of Oceanview Development Corporation Is Considering Submi 2839863

(2) Glenn Foreman, president of Oceanview Development Corporation, is considering submitting a bid to purchase property that will be sold by sealed bid at a county tax foreclosure. Glenn’s initial judgment is to submit a bid of $5.5 million. Based on his experience, Glenn estimates that a bid of $5.5 million will have a 0.2 probability of being the highest bid and securing the property for Oceanview.

The sealed-bid procedure requires the bid to be submitted with a certified check for

8% of the amount bid. If the bid is rejected, the deposit is refunded. If the bid is accepted, the deposit is the down payment for the property. However, if the bid is accepted and the bidder does not follow through with the purchase and meet the remainder of the financial obligation within six months, the deposit will be forfeited. In this case, the county will offer the property to the next highest bidder.

If Oceanview’s bid is accepted and they obtain the property, the firm has to decide between building and selling a complex of luxury condominiums or building and selling a complex of single family residences. However, a complicating factor is that the property is currently zoned for single-family residences only. Glenn believes that a referendum could be placed on the voting ballot in time for the November election. Passage of the referendum would change the zoning of the property and permit construction of the condominiums. To determine whether Oceanview should submit the $5 million bid, Glenn conducted some preliminary analysis. This preliminary work provided an assessment of a 40% the probability that the referendum for a zoning change will be approved.

Cost and Revenue Estimates- Condominiums

Revenue from condominium sales: $16,000,000 with a probability of 75% or 7,000,000 with a probability of 25%

Cost: Construction expenses of $7,500,000

Cost and Revenue Estimates- Single Family Homes

Revenue from home sales: $12,000,000 with a probability of 70% or 6,000,000 with a probability of 30%

Cost: Construction expenses of $6,000,000

a. Draw the decision tree for this problem.

b. Calculate the expected values and determine the best decision for Oceanview

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

200909 Enterprise Law Western Sydney University Kimberley Charles Sport N Surf Law A 2868234

200909: Enterprise Law- Western Sydney University- Kimberley & Charles- Sport n Surf- Law Assignment Help

Task:

There are two parts to this exam and students must answer both parts.

Part A:

Elle runs a Bed & Breakfast house in the Southern Highlands in NSW. To give it acertain quaintness, Elle decides to install outside shutters to frame her windows. Elleorders the pine shutters, which are on sale in the local hardware store. Elle hires ahandyman to install the shutters. The instructions are contained in a bookletsupplied with the shutters. In very small writing appears the following statement:

These shutters are for decoration only and should not be installed where exposed to harsh weather conditions.

The handyman read this clause but did not say anything to Elle. After the shutters had been in place for several months, the wood appeared to be
splitting. Elle notices that some of the shutters are damaged but does nothing about them.

On a windy evening, one of the damaged shutters is blown from the window surrounds and hits Kimberley, a guest who was in the garden enjoying her onecigarette per day. Another shutter flies off and hits Charles, a member of the public, who is taking a short cut across Elle’s property having been caught out too long on abush walk.

Kimberley suffers bruising and cuts across her arm and shoulder and develops a phobia about wind, claiming she can no longer leave the security of her own home,and cannot work. Charles suffers a head injury and is off work for six months recovering.

Elle immediately removes all the shutters.Kimberley and Charles have advised that they intend to sue Elle in negligence.Advise Elle on the likelihood of those claims being successful, giving full legalreasons for your response.

Part B:

Jacob is interested in buying a small retail clothing business called ‘Sport ‘n Surf’ inCronulla. One Saturday, Jacob runs into two former school friends, Rose, who ownsa hairdressing salon in Cronulla and Geoff, who is a business broker specialising inmatching prospective business buyers with sellers in the hotel sector. Jacob tellsRose and Geoff that he is considering buying the business. Rose tells Jacob thatCronulla is booming and that the business is sure to do well, as everyone in Cronullasurfs and plays a sport of some description. Geoff, who is not an accountant, offers
to have a look at the books of the business and give Jacob his view. The books ofthe business have been prepared by Water Accounting Services, the business’ usualaccountants. Geoff inspects the books and tells Jacob that the business is doing welland that it made a profit of $120,000 last year. In fact, due to an error by WaterAccounting Services, the profit was reported as $120,000 when in fact it was$12,000. Geoff advises Jacob that based on the past profit disclosed in theaccounts and his own observations of the business, the purchase price sought by the sellers at $250,000 extremely reasonable.

Jacob bought the business for $250,000 and at the end of twelve months is verydisappointed to find that his profit was only $12,000. He learns from other businessbrokers that a reasonable purchase price for the business, even based on a profit of$120,000 would have been $200,000, but clearly less if based on a profit of $12,000.

Discuss whether Jacob may have been owed a duty of care on the above facts, and if so, by whom. Fully explain your answer.

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

20 V 8 A 60v 12 A P2 03 6ed Is The Circuit S Interconnection Valid Valid No What Is 3297296

20 V 8 A 60V 12 A P2.03 6ed Is the circuit’s interconnection valid? Valid: | No What is the total power developed by this circuit? 8 “+”absorbed “” delivered delivered Check

Attachments:

2.png

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

200019 Australian Resident Lindfield Sydney Get Revenue Law Assignment Help At 2868233

200019: Australian Resident- Lindfield Sydney- Get Revenue Law Assignment Help at [email protected]

Task:

Peter, an Australian resident, has lived in his house in Lindfield, Sydney since 1990 and purchased for $450,000. The four bedroom house was located on a large 900 m block, with the property located in the front part of the block. From January 2016 to January 2017 he has been involved with online accommodation hosting site Air B and B and has had numerous people stay overnight, utilising two of the four bedrooms. The normal way the arrangement is organised is through “word of mouth”, and the listing on the online hosting site. In the year ended 30 June 2016, he received $25,000 for such Air B and B accommodation bookings. The money was never received by Peter, but transferred directly to the school account for his 15 year old daughter for her school fees. At that time the school fees were $30,000. The outstanding $5,000 has been forgiven by the school.

In January 2017, he decided to subdivide his land into two 450 m blocks, with the intention of building a townhouse. The subdivision is approved and, while he is building the two bedroom townhouse, he continues to live in his existing house. When the two bedroom townhouse is completed he moves into that townhouse, lives in it for six months, receiving all of his bills, car renewal reminders etc at that new address, and then sells it. During that six month period, he rents out his four bedroom house for six months. After the six month period, he then moves back into his four bedroom house for the next six months, receiving all of his bills, car renewal reminders etc at that new address. In March 2018 he decides to sell the four bedroom house, move to Hobart and live with his brother.

His overall development costs to subdivide and build the townhouse total $500,000 and he sold the two bedroom townhouse for $800,000 and the four bedroom house for $1.5 million.

Discuss

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

20 Paid Employee Salary 2 055 Which Includes Accrued Salaries From December Accrued 1383365

20 Paid employee salary, $2,055 which includes accrued salaries from December.Accrued salaries expense is 686

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

2 You Are Asked By A Swedish Company That Assembles Computers To Draw Up A By Nature 2843600

2.You are asked by a Swedish company that assembles computers to draw up a by-nature and by-function income statement for year n . You are provided with the following information: Retail price of a PC: €1500. Cost of various components: E XERCISES SECTION 1 Parts Case Motherboard Processor Memory Graphic card Hard disk Screen DVD combo Price 50 200 300 100 50 150 200 50 Opening inventory 5 8 4 6 1 5 3 7 Closing inventory 13 2 11 4 13 10 3 19 Over the financial period, the company paid out €60 000 in salaries and social security contributions of 50% of that amount. The company produced 240 PCs. Closing stock of finished products was 27 units and opening stock 14 units. At the end of the financial period, the manager of the company sells the premises that he had bought for €200 000 three years ago (which was depreciated over 40 years) for €230 000, it now occupies old premises that are fully depreciated, and pays off a €12 000 loan on which the company was paying interest at 5%. What impact do these transactions have on EBITDA, operating profit and net income? Tax is levied at a rate of 35%. Over the course of the financial period, by how much did the company/the lenders/the company manager (who owns 50% of the shares) get richer/poorer?

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW