Código en Python:
Una empresa de tecnología necesita manejar los montos de venta de N puntos de ventas de los últimos 10 años.
1. Punto de venta que más vendió en cada año
2. El promedio de ventas por cada año
3. Cual Año fue el año con mayor promedio de ventas
4. Ventas totales de la empresa durante los últimos 10 años
Category: Python
: Project Title: Medication Dosage Calculator for Nurses Summary: The “Medicatio
: Project Title: Medication Dosage Calculator for Nurses
Summary:
The “Medication Dosage Calculator for Nurses” project is designed to enhance patient care by providing nurses with a precise tool for calculating medication dosages. Nurses often need to administer medications based on factors like a patient’s age, weight, and specific medical conditions. This application allows nurses to input patient information and receive accurate dosage recommendations, reducing the risk of errors in medication administration. With a user-friendly interface and real-time calculations, this tool empowers healthcare professionals to ensure the right dose for every patient, promoting patient safety and optimal treatment outcomes.also, there will additional things on this in the file that I will provide beacase this summry was from version 1 idea and the last ideas we collected will be in the file we need the python code to be nice and for the report we need only the introduction and conclusion the rest our colleagues will do
: Project Title: Medication Dosage Calculator for Nurses Summary: The “Medicatio
: Project Title: Medication Dosage Calculator for Nurses
Summary:
The “Medication Dosage Calculator for Nurses” project is designed to enhance patient care by providing nurses with a precise tool for calculating medication dosages. Nurses often need to administer medications based on factors like a patient’s age, weight, and specific medical conditions. This application allows nurses to input patient information and receive accurate dosage recommendations, reducing the risk of errors in medication administration. With a user-friendly interface and real-time calculations, this tool empowers healthcare professionals to ensure the right dose for every patient, promoting patient safety and optimal treatment outcomes.also there will additional things on this in the file that I will provide beacase this summry was from version 1 idea and the last ideas we collected will be in the file
Homework Submission Guide The decomposition of each homework problem Each homewo
Homework Submission Guide
The decomposition of each homework problem
Each homework is an IPython notebook that asks you to implement certain functionalities. Each
homework problem can be divided into 3 parts:
1. The problem description: this code block is normally in markdown format and it describes the problem.
2. The problem implementation: this code block is where you will enter your code to implement a particular functionality requested in the problem description.
3. The problem test cases: There may be several test-case code blocks. Eachcode block involves test cases to assess whether the functionality you implement in the previous block solves the problem. Note that this block may also include HIDDEN test cases where you cannot see on you homework. Those test cases are used to test whether you have thought about all the corner cases of your problem
– do not use Numpy functions: mean, sum and linspace – must provide 2 codes: 1)
– do not use Numpy functions: mean, sum and linspace
– must provide 2 codes: 1) non-vectorized solution and 2) a vectorized solution
You will need Python knowledge, but for this lab Tableau, I will share my login
You will need Python knowledge, but for this lab Tableau, I will share
my login details with you to complete this with Tableau. 6 week’s
exercises I have attached to see but you don’t need to do them. If you
need you can see them. I only need lab 06. (see the screenshot), if you
can help me with this i can invite you to do lab 07 as well. Thank you.
You will need Python knowledge, but for this lab Tableau, I will share my login
You will need Python knowledge, but for this lab Tableau, I will share my login details with you to complete this with Tableau. 6 week’s exercises I have attached to see but you don’t need to do them. If you need you can see them. I only need lab 06. (see the screenshot), if you can help me with this i can invite you to do lab 07 as well. Thank you.
CPU Scheduler Project objective: To learn more about OS scheduling through a han
CPU Scheduler
Project objective: To learn more about OS scheduling through a hands-on simulation programming experience
Implement the following 3 CPU scheduling algorithms
Simulate and evaluate each with the set of eight processes below.
Use any programming language. The program listing should be submitted with the report.
1. FCFS non-preemptive (partial results provided)
2. SJF non-preemptive
3. MLFQ
Multilevel Feedback Queue (absolute priority in higher queues)
Queue 1 uses RR scheduling with Tq = 5
Queue 2 uses RR scheduling with Tq = 10
Queue 3 uses FCFS
All processes enter first queue 1. If time quantum (Tq) expires before CPU burst is complete, the
process is downgraded to next lower priority queue. Processes are not downgraded when preempted by a
higher queue level process. Once a process has been downgraded, it will not be upgraded.
Assumptions:
1. All processes are activated at time 0
2. Assume that no process waits on I/O devices.
3. After completing an I/O event, a process is transferred to the ready queue.
4. Waiting time is accumulated while a process waits in the ready queue.
5. Turnaround time is a total of (Waiting time) + (CPU burst time) + (I/O time)
6. Response time is the first measure of waiting time from arrival at time 0 until the first time on the CPU.
Process Data:
process goes {CPU burst, I/O time, CPU burst, I/O time, CPU burst, I/O time,…….., last CPU burst}
P1 {5, 27, 3, 31, 5, 43, 4, 18, 6, 22, 4, 26, 3, 24, 4}
P2 {4, 48, 5, 44, 7, 42, 12, 37, 9, 76, 4, 41, 9, 31, 7, 43, 8}
P3 {8, 33, 12, 41, 18, 65, 14, 21, 4, 61, 15, 18, 14, 26, 5, 31, 6}
P4 {3, 35, 4, 41, 5, 45, 3, 51, 4, 61, 5, 54, 6, 82, 5, 77, 3}
P5 {16, 24, 17, 21, 5, 36, 16, 26, 7, 31, 13, 28, 11, 21, 6, 13, 3, 11, 4}
P6 {11, 22, 4, 8, 5, 10, 6, 12, 7, 14, 9, 18, 12, 24, 15, 30, 8}
P7 {14, 46, 17, 41, 11, 42, 15, 21, 4, 32, 7, 19, 16, 33, 10}
P8 {4, 14, 5, 33, 6, 51, 14, 73, 16, 87, 6}
The question is marked with long days because Project 3 has not yet been posted.
The question is marked with long days because Project 3 has not yet been posted. but Project 2 is due this week.
Please view the attached document. And submit the file as requested.
PROJECT 2 IS DUE ON THURSDAY 10/25.
I will send the Project 3 as soon as possible. My professor has not posted it yet and it will probably take up to 2 weeks.
Here you make a simple or digital calculator where you also use some python func
Here you make a simple or digital calculator where you also use some python functions and it’s libraries.