SlideShare a Scribd company logo
American Psychological Association (APA)
information for:
Documentaries
Project Implicit
Reference
Greenwald, T., Banaji, M. & Nosek, B. (1998). Project implicit.
[Application of implicit social
cognition]. Retrieved from https://www.projectimplicit.net
In-text Citation
At the beginning of the sentence the first time you mention:
Greenwald, Banaji and Nosek
(1998)…….
*Subsequent citations in text citation: Greenwald et al. (1998)
*FOR WORK FOR MORE THAN THREE AUTHORS
At the end of a sentence:…………(Greenwald, Banaji & Nosek,
1998).
A Class Divided
Reference
Peters, W. (Producer & Director). (1985). A class divided
[Motion picture]. U.S.: WGHBH
Educational Foundation
In-text Citation
At the beginning of the sentence: Peters (1985)…….
At the end of a sentence:…………(Peters,1985).
A Class Apart
Reference
Sandoval, C. & Miller, P. (Producers & Directors). (2009). A
class apart [Motion picture]. U.S.:
WGBH Educational Foundation
In-text Citation
At the beginning of the sentence: Sandoval and Miller
(2009)…….
At the end of a sentence:…………(Sandoval & Miller, 2009).
Stonewall Rising
Reference
Davis, K. & Heilbroner (Producers & Directors). (2011).
Stonewall rising [Motion picture]. U.S.:
WGBH Educational Foundation
In-text Citation
At the beginning of the sentence: Davis and Heilbroner
(2011)…….
At the end of a sentence:…………(Davis & Heilbroner, 2011).
Stolen Ground
Reference
Wah, L.M. (2008). Stolen ground. [Motion picture]. U.S.:
Stirfry Seminars
In-text Citation
At the beginning of the sentence: Wah (2008)…….
At the end of a sentence:…………(Wah, 2008).
Crash
Reference
Yari, B. (Producer). (2004). Haggis, P. (Director). Crash
[Motion picture]. U.S.:
Lions Gate Entertainment
In-text Citation
At the beginning of the sentence: Yari and Haggis (2004)…….
At the end of a sentence:…………(Yari & Haggis, 2004).
INSY 5336
Python Programming
Fall 2019
Final Term Project (100 points)
Due Date: December 3, 2019 11:59 pm CST (no exceptions)
The following guidelines should be followed and will be used to
grade your project work:
• All code to be implemented and submitted as a jupyter
notebook (.ipynb) file.
• This is an individual homework assignment, no group
submissions will be accepted. If you discuss in
groups, please write your code individually and submit.
• Sample runs shown in the question should be used as a guide
for implementation. However extensive
testing needs to be done on your code to deal with all test cases
that might possibly be executed.
• The instructions for running of each cell and the expected
results should be documented in the cell
preceding the code using markdown language.
• Every code segment in the jupyter notebook cells should be
well documented with comments. Use # in
the code to provide comments and they should explain the
algorithm and what the code segment is
doing.
• Error checking in your code is very important and
differentiates a high quality programmer from a low
quality one. Hence you should account for invalid user inputs,
infinite loops, out of range results, etc.
and resolve them by appropriate error messages. The homework
will be graded for robustness of your
code.
• Please read each assignment carefully. Note that you need to
test your code with example input files. I
will be using my own test input file to test your code. DO NOT
hard code file names in your program.
This is a project to scrape data from the web and store the
results in a text file.
1. (100 points) The CNN Money’s Market Movers website
(https://money.cnn.com/data/hotstocks/ )
tracks the most active stocks on a real time basis. Specifically,
the most active, the top gainers and
top losers are listed at any instance in time. You will first write
Python scripts that collect the list of
most actives, gainers and losers from the above website. Next,
your programs should take the ticker
symbols and names of these companies (and categories) and
build a csv file (called stocks.csv) with
data about each stock from the website:
https://finance.yahoo.com/quote/AMD?p=AMD&.tsrc=fin-srch-
v1 which gives the quote for
ticker symbol AMD as an example. The data to be collected
from the Yahoo Finance site should
include:
OPEN price
PREV CLOSE price
VOLUME
MARKET CAP
Your code should also list the names of the companies in the
order and categories listed in the
website: https://money.cnn.com/data/hotstocks/ and ask the user
to choose a company to get the
data on. Once the user chooses the company of interest, your
program should display its
corresponding data (Open, Prev Close, Volume and Market
Cap).
https://money.cnn.com/data/hotstocks/
https://money.cnn.com/data/hotstocks/
https://money.cnn.com/data/hotstocks/
https://finance.yahoo.com/quote/AMD?p=AMD&.tsrc=fin-srch-
v1
https://finance.yahoo.com/quote/AMD?p=AMD&.tsrc=fin-srch-
v1
https://finance.yahoo.com/quote/AMD?p=AMD&.tsrc=fin-srch-
v1
https://finance.yahoo.com/quote/AMD?p=AMD&.tsrc=fin-srch-
v1
https://finance.yahoo.com/quote/AMD?p=AMD&.tsrc=fin-srch-
v1
https://finance.yahoo.com/quote/AMD?p=AMD&.tsrc=fin-srch-
v1
https://money.cnn.com/data/hotstocks/
https://money.cnn.com/data/hotstocks/
Sample Runs (user input in RED):
This is a program to scrape data from the
https://money.cnn.com/data/hotstocks/ for a class project.
Which stock are you interested in:
Most Actives:
AMD Advanced Micro Devices Inc
GE General Electric Co
BAC Bank of America Corp
WBA Walgreens Boots Alliance Inc
AAPL Apple Inc F
Ford Motor Co
FCX Freeport-McMoRan Inc
CSCO Cisco Systems Inc
OXY Occidental Petroleum Corp
MU Micron Technology Inc
Gainers:
WBA Walgreens Boots Alliance Inc
MKTX Marketaxess Holdings Inc
NVR NVR Inc
ARNC Arconic Inc
GPS Gap Inc
EQIX Equinix Inc
ULTA Ulta Beauty Inc
TTWO Take-Two Interactive Software Inc
M Macy's Inc
NWSA News Corp
Losers:
FCX Freeport-McMoRan Inc
WYNN Wynn Resorts Ltd
COTY Coty Inc
CNP CenterPoint Energy Inc
ABC AmerisourceBergen Corp
MRO Marathon Oil Corp
ATVI Activision Blizzard Inc
COG Cabot Oil & Gas Corp
XRAY Dentsply Sirona Inc
User inputs: COTY
The data for COTY Coty Inc is the following:
COTY Coty Inc
OPEN: 12.78
PREV CLOSE: 12.84
https://money.cnn.com/data/hotstocks/
https://money.cnn.com/data/hotstocks/
VOLUME: 2,000,995
MARKET CAP: 9.580B
The csv should look something like this for one entry:
Losers,COTY,Coty Inc,12.78,12.84, 2,000,995, 9.580B
Exceptional
4
Good
3
Fair/Adequate
2
Limited
1
Poor/Unacceptable
0
N/A Possible
Points
Implicit
Assessment
Additional
Feedback
Structure/Organization Has a sophisticated organizational
structure that demonstrates a
complex understanding of the
material (10 pts)
Well organized from
introduction to conclusion;
paragraphs and ideas flow
coherently (9 pts)
Easy to follow, but would
benefit from some
restructuring and/or stronger
transitions between ideas (8
pts)
Readable, but order of
ideas and/or transitions
between ideas need work
(7 pts)
Difficult to follow Measure does
not apply
10
Research - Results of each
assessment and/or detailed,
organized, and well-
structured notes from film
analysis
Meets or exceeds research
requirements and integrates sources
skillfully (10 pts)
Meets or exceeds research
requirements and integrates
sources effectively (9 pts)
Meets research requirements
and integrates sources
correctly (8 pts)
Either fails to meet
research requirements or
fails to integrate sources
correctly (7 pts)
Fails both to meet research
requirements and to
integrate sources correctly
Measure does
not apply
10
Reading Comprehension -
Must include 3-5 concepts
from the assigned reading in
this class .
Demonstrates comprehension of all
sources, ability to evaluate sources,
and ability to advance knowledge
through a sophisticated reading of
the material (10 pts)
Demonstrates comprehension of
all sources plus ability to
evaluate sources (9 pts)
Demonstrates basic
comprehension of both
primary and secondary
sources (8 pts)
Demonstrates inconsistent
comprehension of sources
(7 pts)
Fails to demonstrate
comprehension of sources
Measure does
not apply
10
Documentation Demonstrates independent research
of documentation manual and
employs advanced documentation
style techniques (5 pts)
Follows basic style (MLA,
APA, Chicago) with few or no
flaws (4 pts)
Has punctuation or other
minor errors in
documentation, but in-text
citations are clearly
coordinated w/ bibliography
(3 pts)
Includes both in-text
citations and bibliography,
but they are inconsistent or
incomplete (2 pts)
Either or both in-text
citations or bibliography
missing
Measure does
not apply
5
Formal/professional language
and word choice
Highly articulate academic tone
employing professional language on
an advanced level (5 pts)
Clear and appropriate language
employing professional terms
correctly (4 pts)
Acceptable language use
overall, but some informal
language present (3 pts)
Some acceptable language
use, but overall tone is
informal (2 pts)
Lack of respect shown to
subject through use of slang
and/or overly casual or
colloquial language
Measure does
not apply
5
Grammar (sentence structure,
subject/verb agreement,
pronoun/
antecedent agreement, etc.)
Less than one grammatical error per
page in a paper that employs a
variety of complex sentence
structures (5 pts)
No more than one grammatical
error per page in a paper that
employs a limited range of
complex sentence structures (4
pts)
Occasional errors in
grammar (one or two per
page) in a paper that employs
mostly basic sentence
structures (3 pts)
Several minor errors per
page (2 pts)
Grammatical errors make it
necessary to reread
sentences and/or sections to
discern meaning
Measure does
not apply
5
Punctuation, capitalization, &
spelling
Follows conventions for
punctuation, capitalization, and
spelling with fewer than one error
of this type per page (5 pts)
No more than one error of this
type per page (4 pts)
Occasional errors of this type
but no more than one or two
per page (3 pts)
Approx. four or five errors
of this type per page (2 pts)
Paper requires extensive
editing/proofreading in this
area
Measure does
not apply
5
50 0
Writing Intensive Courses Grading Rubric
Writing Skills Name

More Related Content

Similar to American Psychological Association (APA) information for .docx

ECON 103 The Benefits and Costs of Economic GrowthPurposeY
ECON 103 The Benefits and Costs of Economic GrowthPurposeYECON 103 The Benefits and Costs of Economic GrowthPurposeY
ECON 103 The Benefits and Costs of Economic GrowthPurposeY
simisterchristen
 
CSCI 180 Project Grading  Your project is graded based .docx
CSCI 180 Project Grading   Your project is graded based .docxCSCI 180 Project Grading   Your project is graded based .docx
CSCI 180 Project Grading  Your project is graded based .docx
faithxdunce63732
 
Abstract An overview of the whole report and what it is about..docx
Abstract An overview of the whole report and what it is about..docxAbstract An overview of the whole report and what it is about..docx
Abstract An overview of the whole report and what it is about..docx
bartholomeocoombs
 
Documentation Checklist
Documentation ChecklistDocumentation Checklist
Documentation Checklist
Raghunath (Gautam) Soman
 
Project 2Student Name Aisha TateDate8-Oct-19This form provides t.docx
Project 2Student Name Aisha TateDate8-Oct-19This form provides t.docxProject 2Student Name Aisha TateDate8-Oct-19This form provides t.docx
Project 2Student Name Aisha TateDate8-Oct-19This form provides t.docx
denneymargareta
 
CIS 512 Term Paper Something Great/tutorialoutletdotcom
CIS 512 Term Paper Something Great/tutorialoutletdotcomCIS 512 Term Paper Something Great/tutorialoutletdotcom
CIS 512 Term Paper Something Great/tutorialoutletdotcom
davvvid409
 
ECO-111 MACROECONOMICSWRITTEN ASSIGNMENT 4 QUESTIONS1
ECO-111 MACROECONOMICSWRITTEN ASSIGNMENT 4 QUESTIONS1ECO-111 MACROECONOMICSWRITTEN ASSIGNMENT 4 QUESTIONS1
ECO-111 MACROECONOMICSWRITTEN ASSIGNMENT 4 QUESTIONS1
EvonCanales257
 
Eco 111 macroeconomicswritten assignment 4 questions1
Eco 111 macroeconomicswritten assignment 4 questions1Eco 111 macroeconomicswritten assignment 4 questions1
Eco 111 macroeconomicswritten assignment 4 questions1
joney4
 
POS/409 ENTIRE CLASS UOP TUTORIALS
POS/409 ENTIRE CLASS UOP TUTORIALSPOS/409 ENTIRE CLASS UOP TUTORIALS
POS/409 ENTIRE CLASS UOP TUTORIALS
Sharon Reynolds
 
Week 4 Assignment-Fair Value DUE DATE Sunday midnight of.docx
Week 4 Assignment-Fair Value DUE DATE  Sunday midnight of.docxWeek 4 Assignment-Fair Value DUE DATE  Sunday midnight of.docx
Week 4 Assignment-Fair Value DUE DATE Sunday midnight of.docx
cockekeshia
 

Similar to American Psychological Association (APA) information for .docx (10)

ECON 103 The Benefits and Costs of Economic GrowthPurposeY
ECON 103 The Benefits and Costs of Economic GrowthPurposeYECON 103 The Benefits and Costs of Economic GrowthPurposeY
ECON 103 The Benefits and Costs of Economic GrowthPurposeY
 
CSCI 180 Project Grading  Your project is graded based .docx
CSCI 180 Project Grading   Your project is graded based .docxCSCI 180 Project Grading   Your project is graded based .docx
CSCI 180 Project Grading  Your project is graded based .docx
 
Abstract An overview of the whole report and what it is about..docx
Abstract An overview of the whole report and what it is about..docxAbstract An overview of the whole report and what it is about..docx
Abstract An overview of the whole report and what it is about..docx
 
Documentation Checklist
Documentation ChecklistDocumentation Checklist
Documentation Checklist
 
Project 2Student Name Aisha TateDate8-Oct-19This form provides t.docx
Project 2Student Name Aisha TateDate8-Oct-19This form provides t.docxProject 2Student Name Aisha TateDate8-Oct-19This form provides t.docx
Project 2Student Name Aisha TateDate8-Oct-19This form provides t.docx
 
CIS 512 Term Paper Something Great/tutorialoutletdotcom
CIS 512 Term Paper Something Great/tutorialoutletdotcomCIS 512 Term Paper Something Great/tutorialoutletdotcom
CIS 512 Term Paper Something Great/tutorialoutletdotcom
 
ECO-111 MACROECONOMICSWRITTEN ASSIGNMENT 4 QUESTIONS1
ECO-111 MACROECONOMICSWRITTEN ASSIGNMENT 4 QUESTIONS1ECO-111 MACROECONOMICSWRITTEN ASSIGNMENT 4 QUESTIONS1
ECO-111 MACROECONOMICSWRITTEN ASSIGNMENT 4 QUESTIONS1
 
Eco 111 macroeconomicswritten assignment 4 questions1
Eco 111 macroeconomicswritten assignment 4 questions1Eco 111 macroeconomicswritten assignment 4 questions1
Eco 111 macroeconomicswritten assignment 4 questions1
 
POS/409 ENTIRE CLASS UOP TUTORIALS
POS/409 ENTIRE CLASS UOP TUTORIALSPOS/409 ENTIRE CLASS UOP TUTORIALS
POS/409 ENTIRE CLASS UOP TUTORIALS
 
Week 4 Assignment-Fair Value DUE DATE Sunday midnight of.docx
Week 4 Assignment-Fair Value DUE DATE  Sunday midnight of.docxWeek 4 Assignment-Fair Value DUE DATE  Sunday midnight of.docx
Week 4 Assignment-Fair Value DUE DATE Sunday midnight of.docx
 

More from daniahendric

Variables in a Research Study and Data CollectionIn this assignmen.docx
Variables in a Research Study and Data CollectionIn this assignmen.docxVariables in a Research Study and Data CollectionIn this assignmen.docx
Variables in a Research Study and Data CollectionIn this assignmen.docx
daniahendric
 
Variation exists in virtually all parts of our lives. We often see v.docx
Variation exists in virtually all parts of our lives. We often see v.docxVariation exists in virtually all parts of our lives. We often see v.docx
Variation exists in virtually all parts of our lives. We often see v.docx
daniahendric
 
Valerie Matsumotos Desperately Seeking Deirde  Gender Roles, Mu.docx
Valerie Matsumotos Desperately Seeking Deirde  Gender Roles, Mu.docxValerie Matsumotos Desperately Seeking Deirde  Gender Roles, Mu.docx
Valerie Matsumotos Desperately Seeking Deirde  Gender Roles, Mu.docx
daniahendric
 
valerie is a 15 year old girl who has recently had signs of a high f.docx
valerie is a 15 year old girl who has recently had signs of a high f.docxvalerie is a 15 year old girl who has recently had signs of a high f.docx
valerie is a 15 year old girl who has recently had signs of a high f.docx
daniahendric
 
Utilizing the Statement of Financial Position on page 196 of the Acc.docx
Utilizing the Statement of Financial Position on page 196 of the Acc.docxUtilizing the Statement of Financial Position on page 196 of the Acc.docx
Utilizing the Statement of Financial Position on page 196 of the Acc.docx
daniahendric
 
Utech Company has income before irregular items of $307,500 for the .docx
Utech Company has income before irregular items of $307,500 for the .docxUtech Company has income before irregular items of $307,500 for the .docx
Utech Company has income before irregular items of $307,500 for the .docx
daniahendric
 
Using your work experience in the public and nonprofit sector, and t.docx
Using your work experience in the public and nonprofit sector, and t.docxUsing your work experience in the public and nonprofit sector, and t.docx
Using your work experience in the public and nonprofit sector, and t.docx
daniahendric
 
Using your textbook, provide a detailed and specific definition to.docx
Using your textbook, provide a detailed and specific definition to.docxUsing your textbook, provide a detailed and specific definition to.docx
Using your textbook, provide a detailed and specific definition to.docx
daniahendric
 
Using your text and at least one scholarly source, prepare a two to .docx
Using your text and at least one scholarly source, prepare a two to .docxUsing your text and at least one scholarly source, prepare a two to .docx
Using your text and at least one scholarly source, prepare a two to .docx
daniahendric
 
Using Walgreen Company as the target organization complete the.docx
Using Walgreen Company as the target organization complete the.docxUsing Walgreen Company as the target organization complete the.docx
Using Walgreen Company as the target organization complete the.docx
daniahendric
 
Using the text book and power point on Interest Groups, please ans.docx
Using the text book and power point on Interest Groups, please ans.docxUsing the text book and power point on Interest Groups, please ans.docx
Using the text book and power point on Interest Groups, please ans.docx
daniahendric
 
Using the template provided in attachment create your own layout.R.docx
Using the template provided in attachment create your own layout.R.docxUsing the template provided in attachment create your own layout.R.docx
Using the template provided in attachment create your own layout.R.docx
daniahendric
 
Using the simplified OOD methodologyWrite down a detailed descrip.docx
Using the simplified OOD methodologyWrite down a detailed descrip.docxUsing the simplified OOD methodologyWrite down a detailed descrip.docx
Using the simplified OOD methodologyWrite down a detailed descrip.docx
daniahendric
 
Using the text, Cognitive Psychology 5 edition (Galotti, 2014), .docx
Using the text, Cognitive Psychology 5 edition (Galotti, 2014), .docxUsing the text, Cognitive Psychology 5 edition (Galotti, 2014), .docx
Using the text, Cognitive Psychology 5 edition (Galotti, 2014), .docx
daniahendric
 
Using the Tana Basin in Kenya,1.Discuss the water sources and .docx
Using the Tana Basin in Kenya,1.Discuss the water sources and .docxUsing the Tana Basin in Kenya,1.Discuss the water sources and .docx
Using the Tana Basin in Kenya,1.Discuss the water sources and .docx
daniahendric
 
Using the template provided in a separate file, create your own la.docx
Using the template provided in a separate file, create your own la.docxUsing the template provided in a separate file, create your own la.docx
Using the template provided in a separate file, create your own la.docx
daniahendric
 
Using the template provided in attachment create your own layo.docx
Using the template provided in attachment create your own layo.docxUsing the template provided in attachment create your own layo.docx
Using the template provided in attachment create your own layo.docx
daniahendric
 
Using the Sex(abled) video, the sexuality section in the Falvo text.docx
Using the Sex(abled) video, the sexuality section in the Falvo text.docxUsing the Sex(abled) video, the sexuality section in the Falvo text.docx
Using the Sex(abled) video, the sexuality section in the Falvo text.docx
daniahendric
 
Using the required and recommended resources from this week and last.docx
Using the required and recommended resources from this week and last.docxUsing the required and recommended resources from this week and last.docx
Using the required and recommended resources from this week and last.docx
daniahendric
 
Using the Internet, textbook or related resources, research the crea.docx
Using the Internet, textbook or related resources, research the crea.docxUsing the Internet, textbook or related resources, research the crea.docx
Using the Internet, textbook or related resources, research the crea.docx
daniahendric
 

More from daniahendric (20)

Variables in a Research Study and Data CollectionIn this assignmen.docx
Variables in a Research Study and Data CollectionIn this assignmen.docxVariables in a Research Study and Data CollectionIn this assignmen.docx
Variables in a Research Study and Data CollectionIn this assignmen.docx
 
Variation exists in virtually all parts of our lives. We often see v.docx
Variation exists in virtually all parts of our lives. We often see v.docxVariation exists in virtually all parts of our lives. We often see v.docx
Variation exists in virtually all parts of our lives. We often see v.docx
 
Valerie Matsumotos Desperately Seeking Deirde  Gender Roles, Mu.docx
Valerie Matsumotos Desperately Seeking Deirde  Gender Roles, Mu.docxValerie Matsumotos Desperately Seeking Deirde  Gender Roles, Mu.docx
Valerie Matsumotos Desperately Seeking Deirde  Gender Roles, Mu.docx
 
valerie is a 15 year old girl who has recently had signs of a high f.docx
valerie is a 15 year old girl who has recently had signs of a high f.docxvalerie is a 15 year old girl who has recently had signs of a high f.docx
valerie is a 15 year old girl who has recently had signs of a high f.docx
 
Utilizing the Statement of Financial Position on page 196 of the Acc.docx
Utilizing the Statement of Financial Position on page 196 of the Acc.docxUtilizing the Statement of Financial Position on page 196 of the Acc.docx
Utilizing the Statement of Financial Position on page 196 of the Acc.docx
 
Utech Company has income before irregular items of $307,500 for the .docx
Utech Company has income before irregular items of $307,500 for the .docxUtech Company has income before irregular items of $307,500 for the .docx
Utech Company has income before irregular items of $307,500 for the .docx
 
Using your work experience in the public and nonprofit sector, and t.docx
Using your work experience in the public and nonprofit sector, and t.docxUsing your work experience in the public and nonprofit sector, and t.docx
Using your work experience in the public and nonprofit sector, and t.docx
 
Using your textbook, provide a detailed and specific definition to.docx
Using your textbook, provide a detailed and specific definition to.docxUsing your textbook, provide a detailed and specific definition to.docx
Using your textbook, provide a detailed and specific definition to.docx
 
Using your text and at least one scholarly source, prepare a two to .docx
Using your text and at least one scholarly source, prepare a two to .docxUsing your text and at least one scholarly source, prepare a two to .docx
Using your text and at least one scholarly source, prepare a two to .docx
 
Using Walgreen Company as the target organization complete the.docx
Using Walgreen Company as the target organization complete the.docxUsing Walgreen Company as the target organization complete the.docx
Using Walgreen Company as the target organization complete the.docx
 
Using the text book and power point on Interest Groups, please ans.docx
Using the text book and power point on Interest Groups, please ans.docxUsing the text book and power point on Interest Groups, please ans.docx
Using the text book and power point on Interest Groups, please ans.docx
 
Using the template provided in attachment create your own layout.R.docx
Using the template provided in attachment create your own layout.R.docxUsing the template provided in attachment create your own layout.R.docx
Using the template provided in attachment create your own layout.R.docx
 
Using the simplified OOD methodologyWrite down a detailed descrip.docx
Using the simplified OOD methodologyWrite down a detailed descrip.docxUsing the simplified OOD methodologyWrite down a detailed descrip.docx
Using the simplified OOD methodologyWrite down a detailed descrip.docx
 
Using the text, Cognitive Psychology 5 edition (Galotti, 2014), .docx
Using the text, Cognitive Psychology 5 edition (Galotti, 2014), .docxUsing the text, Cognitive Psychology 5 edition (Galotti, 2014), .docx
Using the text, Cognitive Psychology 5 edition (Galotti, 2014), .docx
 
Using the Tana Basin in Kenya,1.Discuss the water sources and .docx
Using the Tana Basin in Kenya,1.Discuss the water sources and .docxUsing the Tana Basin in Kenya,1.Discuss the water sources and .docx
Using the Tana Basin in Kenya,1.Discuss the water sources and .docx
 
Using the template provided in a separate file, create your own la.docx
Using the template provided in a separate file, create your own la.docxUsing the template provided in a separate file, create your own la.docx
Using the template provided in a separate file, create your own la.docx
 
Using the template provided in attachment create your own layo.docx
Using the template provided in attachment create your own layo.docxUsing the template provided in attachment create your own layo.docx
Using the template provided in attachment create your own layo.docx
 
Using the Sex(abled) video, the sexuality section in the Falvo text.docx
Using the Sex(abled) video, the sexuality section in the Falvo text.docxUsing the Sex(abled) video, the sexuality section in the Falvo text.docx
Using the Sex(abled) video, the sexuality section in the Falvo text.docx
 
Using the required and recommended resources from this week and last.docx
Using the required and recommended resources from this week and last.docxUsing the required and recommended resources from this week and last.docx
Using the required and recommended resources from this week and last.docx
 
Using the Internet, textbook or related resources, research the crea.docx
Using the Internet, textbook or related resources, research the crea.docxUsing the Internet, textbook or related resources, research the crea.docx
Using the Internet, textbook or related resources, research the crea.docx
 

Recently uploaded

Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
Nicholas Montgomery
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
RAHUL
 
How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17
Celine George
 
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
National Information Standards Organization (NISO)
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
PECB
 
Pharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brubPharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brub
danielkiash986
 
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
Nguyen Thanh Tu Collection
 
Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"
National Information Standards Organization (NISO)
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
GeorgeMilliken2
 
How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
Celine George
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Fajar Baskoro
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
Nguyen Thanh Tu Collection
 
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching AptitudeUGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
S. Raj Kumar
 
Walmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdfWalmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdf
TechSoup
 
The History of Stoke Newington Street Names
The History of Stoke Newington Street NamesThe History of Stoke Newington Street Names
The History of Stoke Newington Street Names
History of Stoke Newington
 
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skillsspot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
haiqairshad
 
HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.
deepaannamalai16
 
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptxBeyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
EduSkills OECD
 
Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47
MysoreMuleSoftMeetup
 
Temple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation resultsTemple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation results
Krassimira Luka
 

Recently uploaded (20)

Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
 
How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17
 
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
 
Pharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brubPharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brub
 
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
 
Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
 
How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
 
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching AptitudeUGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
 
Walmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdfWalmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdf
 
The History of Stoke Newington Street Names
The History of Stoke Newington Street NamesThe History of Stoke Newington Street Names
The History of Stoke Newington Street Names
 
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skillsspot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
 
HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.
 
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptxBeyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
 
Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47
 
Temple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation resultsTemple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation results
 

American Psychological Association (APA) information for .docx

  • 1. American Psychological Association (APA) information for: Documentaries Project Implicit Reference Greenwald, T., Banaji, M. & Nosek, B. (1998). Project implicit. [Application of implicit social cognition]. Retrieved from https://www.projectimplicit.net In-text Citation At the beginning of the sentence the first time you mention: Greenwald, Banaji and Nosek (1998)……. *Subsequent citations in text citation: Greenwald et al. (1998) *FOR WORK FOR MORE THAN THREE AUTHORS At the end of a sentence:…………(Greenwald, Banaji & Nosek, 1998). A Class Divided Reference Peters, W. (Producer & Director). (1985). A class divided [Motion picture]. U.S.: WGHBH Educational Foundation
  • 2. In-text Citation At the beginning of the sentence: Peters (1985)……. At the end of a sentence:…………(Peters,1985). A Class Apart Reference Sandoval, C. & Miller, P. (Producers & Directors). (2009). A class apart [Motion picture]. U.S.: WGBH Educational Foundation In-text Citation At the beginning of the sentence: Sandoval and Miller (2009)……. At the end of a sentence:…………(Sandoval & Miller, 2009). Stonewall Rising Reference Davis, K. & Heilbroner (Producers & Directors). (2011). Stonewall rising [Motion picture]. U.S.: WGBH Educational Foundation In-text Citation At the beginning of the sentence: Davis and Heilbroner (2011)……. At the end of a sentence:…………(Davis & Heilbroner, 2011).
  • 3. Stolen Ground Reference Wah, L.M. (2008). Stolen ground. [Motion picture]. U.S.: Stirfry Seminars In-text Citation At the beginning of the sentence: Wah (2008)……. At the end of a sentence:…………(Wah, 2008). Crash Reference Yari, B. (Producer). (2004). Haggis, P. (Director). Crash [Motion picture]. U.S.: Lions Gate Entertainment In-text Citation At the beginning of the sentence: Yari and Haggis (2004)……. At the end of a sentence:…………(Yari & Haggis, 2004). INSY 5336 Python Programming Fall 2019 Final Term Project (100 points) Due Date: December 3, 2019 11:59 pm CST (no exceptions) The following guidelines should be followed and will be used to
  • 4. grade your project work: • All code to be implemented and submitted as a jupyter notebook (.ipynb) file. • This is an individual homework assignment, no group submissions will be accepted. If you discuss in groups, please write your code individually and submit. • Sample runs shown in the question should be used as a guide for implementation. However extensive testing needs to be done on your code to deal with all test cases that might possibly be executed. • The instructions for running of each cell and the expected results should be documented in the cell preceding the code using markdown language. • Every code segment in the jupyter notebook cells should be well documented with comments. Use # in the code to provide comments and they should explain the algorithm and what the code segment is doing. • Error checking in your code is very important and differentiates a high quality programmer from a low quality one. Hence you should account for invalid user inputs, infinite loops, out of range results, etc. and resolve them by appropriate error messages. The homework will be graded for robustness of your
  • 5. code. • Please read each assignment carefully. Note that you need to test your code with example input files. I will be using my own test input file to test your code. DO NOT hard code file names in your program. This is a project to scrape data from the web and store the results in a text file. 1. (100 points) The CNN Money’s Market Movers website (https://money.cnn.com/data/hotstocks/ ) tracks the most active stocks on a real time basis. Specifically, the most active, the top gainers and top losers are listed at any instance in time. You will first write Python scripts that collect the list of most actives, gainers and losers from the above website. Next, your programs should take the ticker symbols and names of these companies (and categories) and build a csv file (called stocks.csv) with data about each stock from the website: https://finance.yahoo.com/quote/AMD?p=AMD&.tsrc=fin-srch- v1 which gives the quote for ticker symbol AMD as an example. The data to be collected from the Yahoo Finance site should
  • 6. include: OPEN price PREV CLOSE price VOLUME MARKET CAP Your code should also list the names of the companies in the order and categories listed in the website: https://money.cnn.com/data/hotstocks/ and ask the user to choose a company to get the data on. Once the user chooses the company of interest, your program should display its corresponding data (Open, Prev Close, Volume and Market Cap). https://money.cnn.com/data/hotstocks/ https://money.cnn.com/data/hotstocks/ https://money.cnn.com/data/hotstocks/ https://finance.yahoo.com/quote/AMD?p=AMD&.tsrc=fin-srch- v1 https://finance.yahoo.com/quote/AMD?p=AMD&.tsrc=fin-srch- v1 https://finance.yahoo.com/quote/AMD?p=AMD&.tsrc=fin-srch- v1 https://finance.yahoo.com/quote/AMD?p=AMD&.tsrc=fin-srch-
  • 7. v1 https://finance.yahoo.com/quote/AMD?p=AMD&.tsrc=fin-srch- v1 https://finance.yahoo.com/quote/AMD?p=AMD&.tsrc=fin-srch- v1 https://money.cnn.com/data/hotstocks/ https://money.cnn.com/data/hotstocks/ Sample Runs (user input in RED): This is a program to scrape data from the https://money.cnn.com/data/hotstocks/ for a class project. Which stock are you interested in: Most Actives: AMD Advanced Micro Devices Inc GE General Electric Co BAC Bank of America Corp WBA Walgreens Boots Alliance Inc AAPL Apple Inc F Ford Motor Co FCX Freeport-McMoRan Inc CSCO Cisco Systems Inc
  • 8. OXY Occidental Petroleum Corp MU Micron Technology Inc Gainers: WBA Walgreens Boots Alliance Inc MKTX Marketaxess Holdings Inc NVR NVR Inc ARNC Arconic Inc GPS Gap Inc EQIX Equinix Inc ULTA Ulta Beauty Inc TTWO Take-Two Interactive Software Inc M Macy's Inc NWSA News Corp Losers: FCX Freeport-McMoRan Inc WYNN Wynn Resorts Ltd COTY Coty Inc
  • 9. CNP CenterPoint Energy Inc ABC AmerisourceBergen Corp MRO Marathon Oil Corp ATVI Activision Blizzard Inc COG Cabot Oil & Gas Corp XRAY Dentsply Sirona Inc User inputs: COTY The data for COTY Coty Inc is the following: COTY Coty Inc OPEN: 12.78 PREV CLOSE: 12.84 https://money.cnn.com/data/hotstocks/ https://money.cnn.com/data/hotstocks/ VOLUME: 2,000,995 MARKET CAP: 9.580B
  • 10. The csv should look something like this for one entry: Losers,COTY,Coty Inc,12.78,12.84, 2,000,995, 9.580B Exceptional 4 Good 3 Fair/Adequate 2 Limited 1 Poor/Unacceptable 0 N/A Possible Points Implicit Assessment Additional Feedback Structure/Organization Has a sophisticated organizational structure that demonstrates a
  • 11. complex understanding of the material (10 pts) Well organized from introduction to conclusion; paragraphs and ideas flow coherently (9 pts) Easy to follow, but would benefit from some restructuring and/or stronger transitions between ideas (8 pts) Readable, but order of ideas and/or transitions between ideas need work (7 pts) Difficult to follow Measure does not apply 10 Research - Results of each assessment and/or detailed, organized, and well- structured notes from film analysis Meets or exceeds research requirements and integrates sources skillfully (10 pts) Meets or exceeds research requirements and integrates sources effectively (9 pts)
  • 12. Meets research requirements and integrates sources correctly (8 pts) Either fails to meet research requirements or fails to integrate sources correctly (7 pts) Fails both to meet research requirements and to integrate sources correctly Measure does not apply 10 Reading Comprehension - Must include 3-5 concepts from the assigned reading in this class . Demonstrates comprehension of all sources, ability to evaluate sources, and ability to advance knowledge through a sophisticated reading of the material (10 pts) Demonstrates comprehension of all sources plus ability to evaluate sources (9 pts) Demonstrates basic comprehension of both
  • 13. primary and secondary sources (8 pts) Demonstrates inconsistent comprehension of sources (7 pts) Fails to demonstrate comprehension of sources Measure does not apply 10 Documentation Demonstrates independent research of documentation manual and employs advanced documentation style techniques (5 pts) Follows basic style (MLA, APA, Chicago) with few or no flaws (4 pts) Has punctuation or other minor errors in documentation, but in-text citations are clearly coordinated w/ bibliography (3 pts) Includes both in-text citations and bibliography, but they are inconsistent or incomplete (2 pts)
  • 14. Either or both in-text citations or bibliography missing Measure does not apply 5 Formal/professional language and word choice Highly articulate academic tone employing professional language on an advanced level (5 pts) Clear and appropriate language employing professional terms correctly (4 pts) Acceptable language use overall, but some informal language present (3 pts) Some acceptable language use, but overall tone is informal (2 pts) Lack of respect shown to subject through use of slang and/or overly casual or colloquial language Measure does not apply 5
  • 15. Grammar (sentence structure, subject/verb agreement, pronoun/ antecedent agreement, etc.) Less than one grammatical error per page in a paper that employs a variety of complex sentence structures (5 pts) No more than one grammatical error per page in a paper that employs a limited range of complex sentence structures (4 pts) Occasional errors in grammar (one or two per page) in a paper that employs mostly basic sentence structures (3 pts) Several minor errors per page (2 pts) Grammatical errors make it necessary to reread sentences and/or sections to discern meaning Measure does not apply 5 Punctuation, capitalization, & spelling
  • 16. Follows conventions for punctuation, capitalization, and spelling with fewer than one error of this type per page (5 pts) No more than one error of this type per page (4 pts) Occasional errors of this type but no more than one or two per page (3 pts) Approx. four or five errors of this type per page (2 pts) Paper requires extensive editing/proofreading in this area Measure does not apply 5 50 0 Writing Intensive Courses Grading Rubric Writing Skills Name