Tag Archive for: Online Assignment Help – savvyessaywriters.net

Misrepresenting Data – Online Assignment Help – savvyessaywriters.net

Misrepresenting Data – Online Assignment Help – savvyessaywriters.net

Get Information Systems Assignment Help Online 

There are many ways to misrepresent data through visualizations of data. There are a variety of websites that exist solely to put these types of graphics on display, to discredit otherwise somewhat credible sources. Leo (2019), an employee of The Economist, wrote an article about the mistakes found within the magazine she works for. Misrepresentations were the topic of Sosulski (2016) in her blog. This is discussed in the course textbook, as well (Kirk, 2016, p. 305).After reading through these references use the data attached to this forum to create two visualizations in R depicting the same information. In one, create a subtle misrepresentation of the data. In the other remove the misrepresentation. Add static images of the two visualizations to your post. Provide your interpretations of each visualization along with the programming code you used to create the plots. Do not attach anything to the forum: insert images as shown and enter the programming code in your post.When adding images to the discussion board, use the insert image icon.This is the data to use for this post:Country_Data.csvBefore plotting, you must subset, group, or summarize this data into a much smaller set of points. Include your programming code for all programming work.ReferencesKirk, A. (2016). Data visualisation: A handbook for data driven design. Sage.Leo, S. (2019, May 27). Mistakes, we’ve drawn a few: Learning from our errors in data visualization. The Economist.https://medium.economist.com/mistakes-weve-drawn-a-few-8cdd8a42d368Sosulski, K. (2016, January). Top 5 visualization errors [Blog].http://www.kristensosulski.com/2016/01/top-5-data-visualization-errors/Considerations for every forum:Remember your initial post on the main topic must be posted by Wednesday 11:59 PM (EST). Your 2 following posts, discussing and interacting peers’ posts must be completed by Sunday at 11:59 PM (EST).Your initial post should include your references, thoroughly present your ideas, and provide evidence to support those ideas.  A quality peer response post is more than stating, “I agree with you.” State why you agree with your classmate’s post. Use the purpose of the forum is generate discussion.An example post:The factual and misrepresented plots in this post are under the context that the visualizations represent the strength of the economy in five Asian countries: Japan, Israel, and Singapore, South Korea, and Oman. The gross domestic product is the amount of product throughput. GDP per capita is the manner in which the health of the economy can be represented.The visual is provided to access the following research question:The plot on the left is the true representation of the economic health over the years of the presented countries. Japan consistently has seen the best economic health of the depicted countries. Singapore and South Korea both have large increases over the years, accelerating faster than the other countries in economic health. Oman saw significant growth in the years between 1960 and 1970, but the growth tapered off. All of the countries saw an increase in health over the provided time frame, per this dataset. Israel saw growth, but not as much as the other countries.The plot on the right is only GDP and does not actually represent the economic health. Without acknowledging the number of persons the GDP represents, Japan is still the leading country over the time frame and within the scope of this dataset. Singapore’s metrics depict some of the larger issues of representing the GDP without considering the population. Instead of Singapore’s metrics depicting significant growth and having a level of health competitive with Japan in the true representation, Singapore has the fourth smallest GDP. It indicates that Singapore’s economy is one of the least healthy amongst the five countries.The programming used in R to subset, create, and save the plots:# make two plots of the same information – one misrepresenting the data and one that does not# use Country_Data.csv data# plots based on the assumption the information is provided to represent the health of the countries’ economy compared to other countries# August 2020# Dr. McClurelibrary(tidyverse)library(funModeling)library(ggthemes)# collect the data filepData <- read.csv("C:/Users/fraup/Google Drive/UCumberlands/ITS 530/Code/_data/Country_Data.csv")# check the general health of the datadf_status(pData)# no NA's no zeros# look at the data structureglimpse(pData) # nothing of note# arbitrarily selected Asia, then list the countries by the highest gdp per capita, to plot competing economies*# select countries - also use countries that cover all of the years in the dataset (52 years)(selCountries %filter(continent == "Asia") %>%group_by(country) %>%summarise(ct = n(),gdpPop = mean(gross_domestic_product/population)) %>%arrange(-ct,-gdpPop) %>%select(country) %>%unlist())# many countries have 52 years worth of data# good plot representation of the GDP per capitap1 %filter(country %in% selCountries[1:5]) %>%    # use subset to identify the top 5 countries to filter forggplot(aes(x = year,                          # plot the countries for each yeary = log(gross_domestic_product/population), # calculating the log of gdp/pop = GDP per capitacolor = country)) +                # color by countrygeom_line() +                                 # creating a line plotscale_x_continuous(expand = expansion(add = c(7,1)), # expand the x axis, so the name labels of the country are on the plotname = “Year”) +           # capitalize the x label, so the annotation is consistentgeom_text(inherit.aes = F,                    # don’t use the aes established in ggplotdata = filter(pData,                 # filter for one data point per country for the label, so one label per countrycountry %in% selCountries[1:5],year == 1960),aes(label = country,                 # assign the labelx = year,y = log(gross_domestic_product/population), # keep the axes and color the samecolor = country),hjust = “outward”,                   # shift the text outwardsize = 3) +                          # make the text size smallerscale_color_viridis_d(end = .8,               # don’t include the light yellow, not very visibleguide = “none”) +       # no legend, because of text labelsscale_y_continuous(name = “GDP per capita – Log Scale”) +      # rename y axisggtitle(“Five Asian Countries: GDP per Capita between 1960 and 2011”) +      # plot titletheme_tufte()# misrepresent economic health – don’t account for populationp2 %filter(country %in% selCountries[1:5]) %>%    # use subset to identify the top 5 countries to filter forggplot(aes(x = year,                          # plot the countries for each yeary = log(gross_domestic_product),   # calculating the log of gdpcolor = country)) +                # color by countrygeom_line() +                                 # creating a line plotscale_x_continuous(expand = expansion(add = c(7,1)), # expand the x axis, so the name labels of the country are on the plotname = “Year”) +           # capitalize the x label, so the annotation is consistentgeom_text(inherit.aes = F,                    # don’t use the aes established in ggplotdata = filter(pData,                 # filter for one data point per country for the label, so one label per countrycountry %in% selCountries[1:5],year == 1960),aes(label = country,                 # assign the labelx = year,y = log(gross_domestic_product), # keep the axes and color the samecolor = country),hjust = “outward”,                   # shift the text outwardsize = 3) +                          # make the text size smallerscale_color_viridis_d(end = .8,               # don’t include the light yellow, not very visibleguide = “none”) +       # no legend, because of text labelsscale_y_continuous(name = “GDP – Log Scale”) +      # rename y axisggtitle(“Five Asian Countries: GDP between 1960 and 2011”) +      # plot titletheme_tufte()# save each plot with a transparent background in the archive image folderggsave(filename = “PerCapita.png”,plot = p1,bg = “transparent”,path = “./code archive/_images”)ggsave(filename = “GDP.png”,plot = p2,bg = “transparent”,path = “./code archive/_images”)

#Misrepresenting Data

Management Information Systems is one of the various business information systems. It is vital to look at the various kinds of information systems available to businesses to comprehend management information systems better. Savvyessaywriters.net offers management assignment help for all students.

PLACE YOUR ORDER NOW

homework cmgt 554 – Online Assignment Help – savvyessaywriters.net

homework cmgt 554 – Online Assignment Help – savvyessaywriters.net

Get Information Systems Assignment Help Online 

CMGT/554: It InfrastructureWk 1: International Plastics, Inc., Infrastructure [due Mon]Wk 1: International Plastics, Inc., Infrastructure [due Mon]Assignment ContentAssessing the current state of the business before starting the full project is a necessity when it comes to working with infrastructure. International Plastics, Inc., a manufacturing company, hired you as a technology consultant to work with the company to review their resources and develop a plan for their infrastructure needs.Your first step is to become familiar with their current documentation and provide a status update to the executives.Review theZIP file for International Plastics, Inc.documentation.Write an executive summary of International Plastics, Inc.’s business requirements for an upcoming discussion with the CEO. As a general guideline, executive summaries are typically 1 to 2 pages in length, at 12 pt font, and single-spaced.Include the following information:A high-level description of the current IT infrastructure including network, information systems, applications, mobile computing, data management, business intelligence, and security.An overview of the operational environment.An explanation of how a new IT infrastructure will improve business performance.A chart listing at least three examples of technology hardware upgrades and how they will improve business performance.Submit your assignment.

#homework cmgt 554

Management Information Systems is one of the various business information systems. It is vital to look at the various kinds of information systems available to businesses to comprehend management information systems better. Savvyessaywriters.net offers management assignment help for all students.

PLACE YOUR ORDER NOW

Need answers for the comprehensive exam – Online Assignment Help – savvyessaywriters.net

Need answers for the comprehensive exam – Online Assignment Help – savvyessaywriters.net

Get Information Systems Assignment Help Online 

Instructions:Be the equivalent of at least three (3) pages or 750 wordsBe a written essay with well-developed paragraphs to answer the prompt.Each essay should feature multiple paragraphs.As with your written papers in courses in the program, each essay should include an introduction, supporting paragraphs, and a conclusion/summary paragraph.Each paragraph should be fully developed with an introductory sentence, supporting sentences, and a concluding sentence.It is highly advisable to provide the reader with a thesis statement and a thesis map for each answer.You should carefully plan your essay and demonstrate your knowledge of the area and your written communication skills.While no formal reference citations are required, you should include names of key individuals who stand out in the areas being discussed in the various questions.Questions:1.) Synthesize the research base that explores the failure of enterprise risk management  (ERM) in an organization. Based on your review of per-reviewed literature identify the problem ERM was designed to solve and the ending result.2.) Evaluate the importance of IT leadership and its role in helping achieve governance to help solve organizational problems.3.) Analyze a situation using appropriate tools help to create value for an organization eg how would ERM be used to create value for a company, discuss the effectiveness of the technology you have chosen4.)Examine the use of either a qualitative or quantitative study that has been done to address information tech program in an organization. Evaluate what you believe to be the most effective approach?

#Need answers for the comprehensive exam

Management Information Systems is one of the various business information systems. It is vital to look at the various kinds of information systems available to businesses to comprehend management information systems better. Savvyessaywriters.net offers management assignment help for all students.

PLACE YOUR ORDER NOW

Python lists are commonly used to store data types. Lists are a collection of information typically called a container. – Online Assignment Help – savvyessaywriters.net

Python lists are commonly used to store data types. Lists are a collection of information typically called a container. – Online Assignment Help – savvyessaywriters.net

Get Information Systems Assignment Help Online 

Python lists are commonly used to store data types. Lists are a collection of information typically called a container. Think of a physical container that can hold all kinds of objects, not just one object of the same type. Python includes a built-in list type called a list. They can be managed by many built-in functions that help fill, iterate over, add to, and delete them.Respond to the following in a minimum of 175 words:Why is it useful to store information with different data types? When do you choose to use a list over a dictionary? Provide a code example that supports your comments.

#Python lists are commonly used to store data types. Lists are a collection of information typically called a container.

Management Information Systems is one of the various business information systems. It is vital to look at the various kinds of information systems available to businesses to comprehend management information systems better. Savvyessaywriters.net offers management assignment help for all students.

PLACE YOUR ORDER NOW