data science amp big data analytics 4

This is an opportunity to expand on that work within the context of the business analytics lifecycle and connect theory to practice.

Construct an essay specific to e-commerce industry and a potential, specific problem to be solved that outlines your exploratory data analytics approach.

(a) Review the Kaggle website (https://www.kaggle.com/datasets) or any public dataset such as those obtained from Google dataset research (https://datasetsearch.research.google.com/). Choose a dataset that closely aligns to the problem you wish to solve. Provide a link to the dataset.

  • (b) Identify five types of data that would be useful in solving the problem you identified.
  • (c) Discuss your exploratory data approach. In your discussion include mention of a least one alternative approach that you believe would be inappropriate.

Guidelines:

  • Minimum word count = 1250
  • Essay formatted per APA specifications including title page, introduction, background literature, discussion, and final summary and conclusions.
  • Include in-text and final references formatted per APA as appropriate
  • Minimum documented references = 5

Guidance:

  • Do not summarize a previously completed project as shown on Kaggle or elsewhere. Instead construct your own proposal.
  • Be sure your in-text and final references support the statements within your essay.
  • Include a clear outline of the specific problem to be solved, what types of questions are intended to be answered, and the proposed technique.

two macroeconomic papers

First Macroeconomic Paper:
Find one or more articles about a good/service the United States exports and a good/service the United States imports. In a well-written paper, explain the following:

  • Discuss what this suggests about the United States’ absolute and comparative advantage when it comes to this good/service.
  • Using the concepts of supply and demand, discuss what effect a “Buy American” campaign might have in the market for the imported good.
  • Given what economists have to say about comparative advantage, would such a campaign be good or bad?

Adhere to the following standards:

  • Your paper should be two to four pages in length, not including the title or references pages.
  • Review the grading rubric, which is be found in the Week 2 folder.
  • Incorporate at least three scholarly references that are not required readings for this module. The CSU-Global Library is a good place to find these references.
  • Be sure to follow the CSU-Global Guide to Writing and APA Requirements (Links to an external site.).

Each paper should include an introduction, a body with at least two fully developed paragraphs, and a conclusion.

Second Macroeconomic Papers Both double space.

From an economic standpoint, evaluate the effect of a minimum wage on the market for low-wage labor. Include the following:

  • Discuss what economic theory predicts will happen
  • Draw a supply and demand graph illustrating the effect of a minimum wage
  • Discuss what elasticity conditions would economic theory prove to be true or false.

Adhere to the following standards:

  • Your paper should be three to five pages in length, not including the title or references pages.
  • Review the grading rubric, which is be found in the Week 3 folder.
  • Incorporate at least three scholarly references that are not required readings for this module. The CSU-Global Library is a good place to find these references.
  • Be sure to follow the CSU-Global Guide to Writing and APA Requirements (Links to an external site.).
  • Your paper should include an introduction, a body with at least two fully developed paragraphs, and a conclusion.

a research paper about aviation airports of a state in aviation field

Pick a state– New Jersey

Research state airports plan (how they’re broken into regions)

Find out the future of the state,

business report.

Major objectives of state plan.

Growth

Sustainability Issues?

Construction (new airports)

problems

what are they doing diff,(airports in the state)

4-5 pages.

midterm essay 21

Post your reply to the midterm essay question here. Do not do outside research. Use only resources assigned in this course.

Essay question: Two prompts available. Answer only one. 300-450 words in length only (slightly shorter than the Reaction Paper minimum length). Answers should include at least two citations to assigned reading in this course. Citations may be parenthetical or footnotes, but they must include the name of the author and a page number. 40 points

A. Examine the two images below and explain how they helped cause controversy in the culture wars. Your answer should identify the art by artist and title (if possible) and also define the basic idea of the culture wars, including how these particular images sparked a reaction.

Serrano Piss Christ.jpgMapplethorpe bondage.jpg

B. This course focuses on divided culture. Explain why artwork that challenges traditional views regarding sexuality, the body, or gender roles has sparked several culture war battles.

need two different copies in different docs please follow apa no plagarism 300 400 words 1 2 references

Discuss the advantages and disadvantages of using sampling to reduce the number of data objects that need to be displayed.

Would simple random sampling (without replacement) be a good approach to sampling? Why or why not?

answer questions on chapters 14 on from dracula

Answer in multiple sentences.

answer follow questions 4

Introduction to Dataming

Refer text book: Introduction-to-Data-Mining-2nd-Edition-by-Pang-Ning-Tan

Exam Questions:

Question1:

Most frequent pattern mining algorithms consider only distinct items in a transaction. However, multiple occurences of an item in the same shopping basket, such as four cakes and three jugs of milk, can be important in transactional data analysis. How can one mine frequent itemsets efficienly considering multiple occurences of items using the Apriori algorithmn?

Question2:

Why is the outliner mining important? Briefy describe the different approaches behind statistical-based outlier detection and distance-based outlier detection.

Question3: Describe why concept hierachies are useful in datamining?

Question4: List and Describe three of the important chararcteristics of decision tree induction algorithms?

Question5: In real-world data, tuples with missing values for some attributes are a common occurence. Describe the strategies for handling this problem

oop general programming and php jquery code for model updating

OOP general programming:

In the real world, a man has a mouth. His mouth can do operations like open/close at the man’s

will. Another man cannot force a man to do such operations without the man’s permission. For

example, a doctor can examine his mouth and request him to do such operations and he will

follow the doctor’s requests after confirming the doctor’s identity. For others, he doesn’t want

them to do such operations. Use OOP Designs to make needed classes with methods to meet

those requirements. You can use any language or pseudo- code to write down your results.

Please complete jQuery and PHP code to prepare the inputs for model updating.

In a form, we have three input boxes for users to type in their choices of courses and

submit the form without refreshing the page(i.e using ajax request). Here are the

requirements:

1. User can type in 1, 2 or 3 courses 2. Each choice is case insensitive (also, user can type

anything, in any case or leave it empty) 3. The choices have to contain “calculus”(in any

case, e.g “Calculus” or “CALCULUS”) in one input

box. 4. Because form onsubmit returns false, the form is submitted through ajax by calling

submitForm(),

add your Javascript/jQuery code inside of this function. 5. The PHP on the server side needs

to do the same validation as in Javascript/jQuery to make sure

data is

consistent.

<form action=”/post” onsubmit=”submitForm();return

false;”>

Choice A: <input type=”text” name=”choices[]”/>

Choice B: <input type=”text” name=”choices[]”/>

Choice C: <input type=”text” name=”choices[]”/>

<input type=”submit” value=”Submit”/> </form>

Finish the Javascript/jQuery and PHP code after each “//add your code after this line”

shown below.

JQuer

y:

function submitForm()

{

var $form = $(‘form’); var url

= $(‘form’).attr(‘action’); //

add your code after this line

}

PHP

:

class MyController extends

Controller {

public function post()

{

$inputs = Input::all(); //add

your code after this line

//end of add your

code

if($this->save($inputs)

) {

return [ ‘status’=>’success’ ]; } else {

return [‘status’=>’error’, ‘errorMessage’ => $this->getLastErrorMessage()]; } }

}

write a 1 050 to 1 400 word paper on the following management s report on internal control over financial reporting the independent registered public accounting firm s report on internal control over financial reporting the independent registered publ

Review the Form 10-K for the company selected for team assignments.

Write a 1,050- to 1,400-word paper on the following:

  1. Management’s Report on Internal Control Over Financial Reporting
  2. The Independent Registered Public Accounting Firm’s Report on Internal Control Over Financial Reporting
  3. The Independent Registered Public Accounting Firm’s Report on the Financial Statements

Explain the purpose and content of each of these reports.

Assuming the report you review is an Unqualified Opinion, express your thoughts on other types of financial statement reports such as Qualified Opinions, Adverse Opinions, and Disclaimer of Opinions.

week 8 discussion 41

Week 8 Discussion

Part 1: Post a Response

The 1970s and 1980s brought remarkable changes for the Untied States. The Cold War between the US and its allies versus the Soviet Union and its allies/clients was still the dominant international issue. China was also going to start emerging as a major world power. Nixon was dealing with Vietnam and then Watergate—one of the pivotal scandals of modern history. Reagan would bring a new national spirit, and he would tackle economic problems by deregulation and moderating taxes—and he would be dealing with a very new type of Soviet leadership.

Discuss lessons in leadership with the examples of President Nixon and President Reagan:

Choose and discuss (in a full paragraph or two) one of the following two topics related to the 1960s and 1970s, especially to the terms of Presidents Nixon and Reagan.

  1. Discuss lessons in leadership with the examples of President Nixon and President Reagan:
    • Identify a leadership example from President Nixon’s handling of the Watergate issue, and another example from Reagan’s presidency.
    • Give two lessons in leadership—one from each example. They can be positive lessons or negative lessons (good things to do; things not to do, etc). Discuss how these lessons can apply to those in business or politics or some other realm.
    • Identify the source(s) where you read about these issues.
  2. Discuss Presidents Nixon and Reagan as Cold Warriors:
    • Identify a strategy or policy from the Nixon presidency that related to the Cold War, and another from the Reagan presidency.
    • In hindsight, describe your views of each approach and how effective (or not) each approach was.
    • Identify the source(s) where you read these issues.

Part 2: Respond to a Peer

Read a post by one of your peers and respond, making sure to extend the conversation by asking questions, offering rich ideas, or sharing personal connections.

Reference Material

Chapters 26 and 27

Week 8 Learn materials

Week 8 Primary Sources

For guidance, view this short video:

Click here to watch the video

Reply