Entries by Student

write my assignment 24261

For this assignment you will need to download and open a data file that is posted in the Course Content folder and titled “descriptive dataset.sav”.  

1. Perform analyses in SPSS on three (3) variables (one nominal, one ordinal, and one interval-level variable) to obtain appropriate descriptive statistics (e.g., measures of central tendency, dispersion, and distribution) related to the sample. Be sure to choose appropriate descriptive statistics that corresponds with level of measurement (nominal/ordinal/interval) for each of the three variables selected. For example, only the mode, frequency or percentage of total cases can be reported for a nominal variable.

2. Create data displays (e.g., histogram graphs, bar graphs, line graphs, pie charts) appropriate for the selected variables.

3. Export or paste your output into a Word document.  Describe the results.  Identify whether data are normally distributed. (e.g., You may choose to also write about the data distribution’s skew and kurtosis.) Write up the results of these analyses as they would appear in a research report. Use the APA manual or the OWL at Purdue Writing with Statistics webpage for formatting guidance. Be sure to discuss your analyses.

4. Write a short paragraph that highlights your understanding of why exploratory data is a critical part of any statistical analysis. The rationale must include definitions of key concepts and course citations to demonstrate your understanding.

You will be posting a draft of this assignment on the Discussion Board by 11:59 PM on Thursday of Learning Module 3.  You are then required to write a peer review of a classmate’s assignment (300-500 words) by noon on Sunday of Learning Module 3. Feedback from classmates (and the instructor) should be incorporated into the assignment that is turned in by 11:59 PM on Sunday of Learning Module 3.  The peer review you provide to a classmate will be scored as a Discussion Board Activity.  After Week 1, we will determine whose assignment you will complete the peer review so that everyone has a peer review completed on their draft. 

 

"Not answered?"


Get the Answer

write my assignment 209

Think about the customer expectations for your current employer (or a company you are familiar with) and a different international organization in an industry or field where you might like to be employed.

  • How well do the two organizations meet their customers’ needs?
  • To what extent are total quality processes employed?
  • Do you feel that total quality processes affect customer satisfaction levels? If so, why? If not, why not?
  • Is the successful implementation of total quality processes affected by whether or not a company is considered international? If so, why? If not, why not?

 

"Not answered?"


Get the Answer

write my assignment 13490

having trouble with this question, any chance someone can help out? would appreciate it

  • Attachment 1
  • Attachment 2

Question 9 Pronghorn Company has the following securities in its portfolio on December 31, 2017. None of these investments are accounted for under the equitymethod. Fair Investments 03—“ Value 1,500 shares of Gordon,Inc., Common 5,000 shares of WallaceCorp., Common 400 shares of Martin, 59,900 51.700Inc., Preferred $80, 100 $75,300 178,900 173,800 $318,900 $310,800 All of the securities were purchased in 2017.In 2018, Pronghorn completed the following securities transactions. March 1 Sold the 1,500 shares of Gordon, Inc., Common, @ $45 less fees of$1,200.April 1 Bought 700 shares of Earnhart Corp., Common, @ $75 plus fees of $1,300. Pronghorn’s portfolio of equity securities appeared as follows on December 31, 2018. Fair Investments Cost Value 5,000 shares of WallaceCorp., Common 700 shares of EarnhartCorp., Common 400 shares of Martin, 59,900 58,100Inc., Preferred $178,900 $173,800 53,800 50,600 $292,600 $282,500 Prepare the general journal entries for Pronghorn Company for: (a) The 2017 adjusting entry. (h) The sale of the Gordon stock. (1:) The purchase of the Earnhart stock. (d) The 2018 adjusting entryr for the trading portfolio.

 

"Not answered?"


Get the Answer

write my assignment 26140

Need help debugging this python code. Are there any programming experts that can help.

def main():

  endProgram,endOrder,endtotalBurger,endtotalFry,endtotalSoda,endTotal,endTax,

  endSubtotal,endOption,endburgerCount,endfryCount,endsodaCount =declareVariables

  while endProgram == ‘no’:

    totalBurger, totalSoda, totalFry, total, tax, subtotal = resetVariables()

    while endOrder == ‘no’:

     option = input(‘1 for burger, 2 for fry, 3 for soda’)

     if option == 1:

        #call getBurger

        totalBurger = getBurger(totalBurger, burgerCount)

     elif option == 2:

        #call getFry

        totalFries = getFry(totalfry, fryCount)

     elif option == 3:

        #call getSoda

        totalSoda = getSoda(totalSoda, sodaCount)

     endOrder = input(‘Do you want to end your order? (Enter no to add more items:)’)

     total = calcTotal(totalBurger, totalFry, totalSoda, total, subtotal, tax)

     printReceipt(total)

     endProgram = input(‘Do you want to end the program? (Enter no to process a new order)’)

def declareVariables():

  endProgram = ‘no’

  endOrder = ‘no’

  totalBurger = 0

  totalFry = 0

  totalSoda = 0

  total = 0

  tax = 0

  subtotal = 0

  option = 0

  burgerCount = 0

  fryCount = 0

  sodaCount = 0

  return endProgram, endOrder, endtotalBurger, endtotalFry, endtotalSoda, endtotal,

  endtax, endsubtotal, endoption, endburgerCount, endfryCount,

  endsodaCount

def resetVariables():

  totalBurger = 0

  totalSoda = 0

  totalFry = 0

  total = 0

  tax = 0

  subtotal = 0

  return totalBurger, totalSoda, totalFry, total, tax, subtotal

def getBurger(totalBurger, burgerCount):

  burgerCount = input(‘enter the number of burgers you want’)

  totalBurger = totalBurger + burgerCount * .99

  return totalBurger

def getFry(totalFry, fryCount):

  fryCount = input(‘enter the number of fries you want’)

  totalFry = totalFry + fryCount * .79

def getSoda(totalsoda, sodaCount):

  sodaCount = input(‘enter the number of sodas you want’)

  totalSoda = totalSoda + sodaCount * 1.09

main()

 

"Not answered?"


Get the Answer