Checklist for Selecting a Research Article

Checklist for Selecting a Research Article

Full Citation for Selected Article:
1. Study uses a quantitative designnot the following designs or publication types:

· Qualitative

· Mixed-Method

· Clinical Guideline

· Systematic Review

· Meta-analysis

· Meta-synthesis

· Meta-aggregate

· Systematic Review of Literature

· Dissertation or Thesis

· Define “quantitative” and the other designs or publication types listed. Did you select a published article where the researcher(s) used a quantitative design? How do you know?

 

2. Peer-reviewed, primary research article

· What does “primary” mean? What does “secondary” mean? What are examples of non-research publications? How do you know if something is “peer-reviewed”? Why do we care if it is peer-reviewed?

 

3. Published within the last 5 years (2015-2020)

· When was your selected article published? Why do we care about publication date? Are there instances where older publications are appropriate and acceptable for us to use? Why or why not?

 

4. First author is a registered nurse and study is published in a nursing journal

· How do you know if the selected article comes from a nursing journal?

 

5. Includes a sample that uses human subjects

· What is a “sample”? Is this the same as “population”? If a study did not use human subjects, what are the alternatives?

 

 

TYE 08.30.16

MMK 6/20

Primary Task Response

Primary Task Response: Within the Discussion Board area, write 400-600 words that respond to the following questions with your thoughts, ideas, and comments. This will be the foundation for future discussions by your classmates. Be substantive and clear, and use examples to reinforce your ideas.

Additional Information: The board of directors at AutoEdge is actively discussing several options to address flagging revenue. One option continues to surface during each board meeting; that is, relocating the manufacturing operation back to the United States. Longtime Chief Financial Officer, Ingrid Adams, leads the group that is in favor of this option.

Ingrid Adams approaches you in the company break room.

“Hello,” she says. “I’m glad I saw you.”

“Hi,” you say. “What can I do for you?”

“I have a question about economics,” she says. “I think you can help me explain something to some shareholders on the board.”

“Economics! My favorite subject,” you say. “What’s your question?”

“If AutoEdge decided to increase its prices and return to the United States,” she says, “how would this action affect consumer demand? I want to know your opinion about elasticity.”

“Sure,” you say. “So you want to know if the elasticity for auto parts is considered to be relatively inelastic, relatively elastic, unitary elastic, perfectly elastic, or perfectly inelastic. Right?”

“Exactly,” she says.

“I have an opinion,” you say. “Do you want to talk about it now, or do you want something in writing?”

“Something in writing would be best,” she says. “Would you explain your opinion so that I can respond to questions from other members of the board, too?”

“I’d be glad to,” you say. “I’ll put something together this afternoon and get it to you before I leave today. Is that soon enough?”

“Perfect,” she says. “Thanks for your help.”

An overview of The health problem

Include an overview of the health problem identified, an in-depth review of the associated anatomy and physiology, an overview of treatment methodologies, and information related to the needs of the patient and/or family related to the problem.

Prepared in PowerPoint,

Length: 10-12 slides in length (excluding title and reference slides

TOPIC: Otitis Media

Environment and Population

Shared Writing: Environment and Population. Dozens of poor states appear to be stuck midway through the demographic transition: Death rates have fallen, birthrates remain high, and per capita incomes are not increasing. \

How do you think these states, with or without foreign assistance, can best get unstuck and complete the demographic transition?

International Norms concerning human rights

Shared Writing: International Organization, Law, and Human Rights. Although international norms concerning human rights are becoming stronger, China and many other states continue to consider human rights an internal affair over which the state has sovereignty within its territory.

Do you think human rights issues are a legitimate subject for one state to raise with another? If so, how do you reconcile the tensions between state autonomy and universal rights? What practical steps could be taken to get sovereign states to acknowledge universal human rights?

Introduction to Biochemistry

Introduction to Biochemistry Lesson. Describe (in words) the overall structure of a lipid bilayer. What are the properties (i.e., characteristics) of the lipid bilayer of a cell that make it impermeable to ions and most molecules?

3. Describe the role of cholesterol in maintaining the fluidity of the lipid bilayer of a

cell?

4. The triglycerides in animals tend to be solids (i.e., fats) at room temperature whereas the triglycerides in plants tend to be liquids (i.e., oils) at room temperature. Based on this fact, what can you conclude about the characteristics of the fatty acids in animal triglycerides compared to the fatty acids in plant triglycerides?

5. Peanut oil contains a high percentage of monounsaturated triglycerides whereas

vegetable oil contains a higher percentage of polyunsaturated triacylglycerols. A bottle of peanut oil and a bottle of vegetable oil are stored in a pantry with an outside wall. During a cold spell, the peanut oil freezes, but the vegetable oil remains liquid. Explain why.

6. How many molecules of ATP are generated when stearic acid (i.e., stearate), an

18-carbon saturated fatty acid, is completely oxidized via the beta-oxidation pathway in the mitochondria? a) 112 b) 129 c) 146 d) 163

7. Which of the following fatty acids below are essential for humans? *Select one or

more. a) Oleic acid b) Linoleic acid c) Linolenic acid d) Palmitoleic acid e) Eicosapentaenoic acid (EPA)

 

 

 

8. Refer to Question 7, look up the structures of each fatty acid that is essential and explain why they are essential for humans?

9. Are trans fatty acids saturated or unsaturated?

10. Provide four (4) examples of foods that contain trans fatty acids. You may use your textbook and/or the internet to assist you. You will earn 10 points for correctly answering each question (maximum points earned = 100 points).

The development of Nursing knowledge

The development of nursing knowledge is an ongoing process. Discuss the case for the ongoing development and use of nursing grand theories and conversely, make a case for the obsolescence of nursing grand theories for today’s practice and research.

600 words.

To reference APA.

Mashing Up Data with PowerPivot

Mashing Up Data with PowerPivot* (Maximum 50 Points). When “Filter, Then Calculate” Does Not Work in DAX Measures. This time you need to open the file with the worksheet Sls and have it linked in the PowerPivot

window.

1. Please create a pivot table first showing the sum of sales by each representative on each date. Now the task is made so easy. However, if you want to compare the sales to the

total sales for a month, you need to do some calculation. In DAX, instead of using

SUMIFS, you need to use Calculate. Calculate asks for an expression and then one or

more filters. For those filters, you are going to use a special function called ALL. ALL

says that you want it to look not just at one representative’s sales for a particular date,

but all the sales in the table.

2. Suppose you want to see % of Grand Total sales. You need to create a new calculated fields by using =SUM(Sls[Sales])/Calculate(SUM(Sls[Sales]), ALL(Sls)). The pivot table

shows that % of Grand Total for Bill’s sales of $851 on June 2, 2011 represents 0.9

percent of the grand total sales.

 

 

3. Now you want to calculate how Bill’s $851 sale on June 2 compared to all sales on June 2. The numerator of the DAX measure is =SUM(Sls[Sales]). The denominator is going to

be hard. Instead of ALL(Sls), you need to ask for AllExcept(Sls, Sls[Date]). It means go

ahead and throw out all the filters except for the Date filter. Keep filtering by date. Please

create a new calculated field, % of Daily Sales, by using the formula

=SUM(Sls[Sales])/Calculate(SUM(Sls[Sales]),AllExcept(Sls,Sls[Date])). Bill’s $851 sales

is now 25% of the daily sales on June 2, 2011.

 

 

2

 

4. You can also override the filters by specifying other filters in the Calculate Function. The actual syntax of the Calculate function is Calculate (Expression, [filter 1], [filter 2], [filter

3], ….). Please create a new calculated field, Amber Sales, to calculate all Amber’s

sales. The Calculated Field formula should be

=CALCULATE(SUM(Sls[Sales]),Sls[Rep]=”Amber”).

5. If Amber is the sales star in the store, perhaps you would want to show everyone’s sales as a percentage of Amber’s Sales. =SUM(Sls[Sales])/Calculate(SUM(Sls[Sales]),

Sls[Rep]=”Amber”) shows sales as a percentage of Amber’s total sales for that day.

Please create such a new calculated field

 

 

 

Mix in Time Intelligence Functions

 

You can apply many filters in the Calculate function. You can replace the first argument in

Calculate with MAX, MIN, AVERAGE, or any function. There are 34 Time Intelligence functions.

If you want to calculate a running month to date (MTD) total, you can use the Calculate function

and specify a filter of DatesMTD(Sls[Date]). But only for reps that match, use AllExcept(Sls,

Sls[Rep]).

1. To show MTD sales for each rep, create a new calculated field, MTDThisRep, using the formula =Calculate(SUM(Sls[sales]), DatesMTD(Sls[Date]), AllExcept(Sls, Sls[Rep])).

 

 

3

 

 

 

2. You can also use previously defined calculated fieldsto simplify the calculation for another measure. To get to This Rep’s Percentage of MTD Sales versus all MTD Sales,

first, you need to build MTDThisRep (Already exists). Next, you need to build MTDAllRep

using =Calculate(Sum(Sls[Sales]),DatesMTD(Sls[Date]),All(Sls)). Now you can simply

build the formula =Sls[MTDThisRep]/Sls[MTDAllRep] as shown in the Calculated Field

Settings image below. Please check a book for a complete list of Time Intelligence

Functions

 

 

4

 

 

3. Save and close your Excel file. Half of your data table should look like this:

 

 

 

5

 

Combination Layouts

 

The PivotTable drop-down in the PowerPivot Window offers eight choices: If you plan to convert

the pivot table to values to reuse it, choose a flattened pivot table which is only a few clicks

along the way. A combination report offers one or more pivot tables or charts. Note that for each

chart on your layout, Microsoft inserted a new worksheet to hold the actual pivot table for the

chart

 

 

The following steps show how to replicate the layouts shown in the blogs and press:

 

1. Open the Excel file BlogsAndPress. Link it to PowerPivot Window. (Hint: Please review the section on adding calculated columns using DAX. You have to add two new columns

 

 

Report Formatting

 

 

 

6

 

– Month and Year to Table1.)

2. Once you added two columns Month and Year to your linked data table, you need to select Four Chart option from Pivot Table menu in PowerPivot window.

3. Choose a location rather than letting them default. Choose a spot on Row 5 of the new workbook.

4. Add as many slicers as possible to the top and left of the chart. 5. Look into the charts image on the next page. Simple bar chart on top of the pie chart

shows the values of Year and Month. Since they are on the same level, you need to

move them into the same Axis field as shown in the field list.

6. The pie chart shows Source values only.

7. For Media Type, you need to choose the correct chart model to use first. It is created by Type *Month and Year. Look to the right, Legend should use Type as well.

8. The last one uses the stacked bar chart model. Webinar belongs to Type. 3Rd Party is a Source. Thus, it should be created using Type (Vertical) by Source (Horizontal). You may still need to fine tune each chart to make it look identical to the one in the image.

9. Now you are ready to make the data display look better. Make Row 1 very tall, perhaps 270 to 300 points tall. Use Insert, Screenshot to add an interesting graphic to Row 1.

10. Add an interesting graphic below the charts to balance the graphic on top of the charts.

11. Go to file, Options, advanced, Display Options for This Worksheet. Clear the Gridlines check box. If you want to go all out, scroll up and clear the scroll bars, sheet tabs, and

formula bars.

12. Minimize the ribbon.

13. Add a fill color behind the whole worksheet.

14. Although the pivot table is active, click on the bounding box around each slicer. Right- click on the border. Select properties. Select Move and /Size with cells.

15. Click away from the pivot table.

 

 

 

7

 

 

You’ve reached the end of this long assignment. If you ever changed any data in a table, the

changes may not be reflected in the pivot table immediately. However, in the top part of the

PowerPivot Field List, you may see a warning message to refresh the relevant pivot table and

please do it accordingly. If you see the values shown in a pivot table different from those in a

given image, examine the measure(s) used and the relationship between the tables in

PowerPivot window. They might be the sources of errors.

 

When you complete this assignment, please save both data files into a zip folder, each using the

original file name and your name initials as the new file name (the pattern should be

<FileName_YourName Initials>). Submit the zip folder to a relevant assignment submission

dropbox in Learn 9.

_______________________

 

*: This assignment is adapted from Chapter 10 in Pivot Table Data Crunching: Microsoft Excel 2010

written by Bill Jelen, Michael Alexander, 2013, Que Publishing, Indianapolis, IN, USA.

 

 

Humanistic Adult Education

Assignment #3: Humanistic Adult Education. Although Knowles’ Andragogy model and Mezirow’s transformative learning theory intersect with progressive and radical philosophies of adult education, they also have several key differences. For example, whereas humanistic adult education underscores the importance of self-actualization (motivation, self-concept, self-directed learning, self-interest, etc.), progressive and radical adult education emphasize the social, economic, and political context of adult learning.

Your paper should address one of the two following questions. While the first option focuses on Knowles’ concept of andragogy, the second one focuses on Mezirow’s transformative learning theory.

OPTION #1

After reading the chapter, please refer to the link below, which outlines the principles of Knowles’s adult learning theory. I would like you to focus on factors involving motivation among adult learners (see the subsection entitled “Motivation of Adult learners” in the link below.

There are also challenges and barriers involved in motivating adult learners including “lack of time, money, confidence, or interest, lack of information about opportunities to learn, scheduling problems, ‘red tape,’ and problems with childcare and transportation.”

Choose a lesson plan, an assignment, or a project that you facilitated or taught. Describe the steps you took to motivate adults to learn. This may be teaching adults a new skill, knowledge, or disposition.

You may choose this option and modify the questions if you are a K-12 educator and are familiar with constructivist theory.

http://www2.selu.edu/Academics/Faculty/nadams/etec630&665/Knowles.html

Your paper should discuss the following elements of this model:

1. Adults need to know why they need to learn something.

· Discuss how you explained to students why they needed to learn this skill or topic.

2. Adults need to learn experientially.

· Describe the experiential learning opportunities you provided adults.

3. Adults approach learning as problem-solving.

· What types of problem-solving activities did you introduce to help adults learn the skill or new knowledge?

4. Adults learn best when the topic is of immediate value.

· Discuss how you communicated to adults the topic’s value and relevance.

OPTION #2

Share an example of a transformative learning experience that involved you. This experience may be drawn from your professional work or your personal experiences Choose a life experience that has challenged your belief system or your perceptions about others or the world.

Discuss the journey you took to “reintegrate this new experience” into your worldview (see the bulleted steps from the excerpt below). Please only share experiences that you are comfortable sharing with your classmates.

Transformative Learning

Transformative learning is basically the kind of learning we do as we make meaning of our lives. It’s become a very popular topic in adult education because it doesn’t just involve classroom learning–it involves learning about our lives. This is important because as adults, the meaning making process can change everything about how we look at work, family, and the world.

If you read the literature of adult education, you’ll find a lot of theoretical writing on this subject and quite a few studies. One of the best-known experts in this area is a scholar named Jack Mezirow, who started studying this area in the 1970s. Mezirow came up with a set of phases that people go through when they experience transformation, and those steps are:

· Experiencing a disorienting dilemma

· Self-examination

· Critical assessment of assumptions

· Recognizing that others have gone through a similar process

· Exploring options

· Formulating a plan of action

· Reintegration

Now, as you can see here, transformation is something that is usually triggered by a problem, and very often, transformative experiences are painful to go through. After identifying their problem or challenge, people seem to enter a phase where they reflect critically on this–this is typically a problem that you’ve never experienced before, so it takes a lot of thinking and talking to others to work through. During the thinking phase, people may find that they can no longer keep their old ways of thinking and being–they are compelled to change.

Finally, there is an action phase where people decide to do something.

This could mean that you have to break off certain relationships that don’t fit your beliefs anymore; it could mean that you decide to make a career change–action can take many forms. Also, the process itself may take a long time.

You could reflect on something for years before you are ready to accept new beliefs and act on them.

So clearly, transformative learning is not “little” learning, and this is one of the problems that people have with this whole theory. For example, what if you go back to school and get a degree–have you transformed yourself? This is a tough question, and the answer won’t be the same for everybody.

What Mezirow says is that learning “can consist of a change in one of our beliefs or attitudes” (Merriam & Caffarella, 1999, p. 320); this is what he calls a “meaning scheme.” But this isn’t transformational learning in Mezirow’s opinion.

It’s only when we change our entire perspective on something (our meaning perspective) that we really transform. So for example, if you said, “Well, I met someone from another country and now I think totally differently about that culture,” for Mezirow this wouldn’t really be considered a moment of transformative learning.

Mezirow would say that you’d have to engage in all the phases of transformation first–but this encounter with this person could lead you to start questioning your assumptions about a lot of things and that could, in turn, eventually lead to transformation.

What is Development?

What is development? And why do we study it? Requirements: Your response should be 250 words and include APA style reference to the book or other material. You must make an initial post before you are able to view the posts of your peers.