CEIS110+Project+Template+Module+Deliverable+Week+6+v2

.pptx

School

DeVry University, Keller Graduate School of Management *

*We aren’t endorsed by this school

Course

110

Subject

English

Date

Jun 14, 2024

Type

pptx

Pages

6

Uploaded by EarlOxideHorse32

CEIS110 Module 6 Develop Graphical Models and Interpret Results
Rubric Activity Requirement(s) Points Plot #1 Picture/screenshot of plot from data with code 15 Plot #2 Picture/screenshot of plot from data with code 15 Analysis Question, plot, and answer 15 Prediction Prediction based on data 15
Plot #1 Plot and code used to generate it Box Line Histogram Scatter Research your own! #!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Sun Jun 11 18:29:26 2023 @author: lorrasta """ #Purpose: Create box plot for week 2 data #Name: Lonnie Hunter #Date: 06/11/23 import pandas as pd import matplotlib.pyplot as plt df2 = pd.read_csv("formatdata2.csv") df2.boxplot(); plt.suptitle('Week 2 box plot') plt.show()
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help