Worksheet 3A
Who is asking evaluation questions of the program?
Engage stakeholder
Who will use the evaluation results and for what purpose?
The purpose is that evolution results in tobacco and cigarettes Continue reading
Worksheet 3A
Who is asking evaluation questions of the program?
Engage stakeholder
Who will use the evaluation results and for what purpose?
The purpose is that evolution results in tobacco and cigarettes Continue reading
```{r setup, include = FALSE} knitr::opts_chunk$set(echo = TRUE) library(cvTools) #library(glmnet) library(sandwich) Continue reading
/*Assignm
* run many code samples & provide output
*
* L: the list
* n: number of items stored in the list, not the size of the array Continue reading
Background on the Disease
Barrett’s oesophagus is a diseased condition in which the flat pink lining of the swallowing tube, connecting the mouth and the stomach, known as the oesophagus, is damaged by acid reflux, which specifically causes the lining of the oesophagus to get thickened and turn into red colour Continue reading
#include <stdio.h> #include <string.h> // To return value for a character. 10 is returned for 'A' int val(char c) { Continue reading
{ "cells": [ { "cell_type": "code", "execution_count": 195, "metadata": {}, "outputs": [ { Continue reading
#data
Universal_bank = read.csv(“UniversalBank.csv”, header = T)
dim(Universal_bank)
head(Universal_bank) Continue reading
from numpy import random
def get_rain():
if random.rand() < rain_chance:
return 0
return max(0, random.normal(rain_mean, rain_std, size=(1, 1))[0][0]) Continue reading
#!/bin/python3
“””
Explain how your pseudo random numbers are produced.
– The pseudo random numbers without seed value. Will be take the nanosecond on posis system. Then move to text file base on position. So it will work.
– The pseudo rando number with seed value. Will be move to file with this position. That’s mean the random will be the same
“”” Continue reading
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
/* Stores parameters that specify how to the program should behave. * Continue reading
import numpy as np print('') print("Enter two numbers, low then high.") l = int(input("low = ")) h = int(input("high = ")) Continue reading
summary_statistics_A <- function(matrix){
vec = sort(as.vector(matrix))
len = length(vec)
if(isSymmetric(matrix) && is.numeric(matrix)){
min = vec[1]
Continue reading
Introduction
Behaviorism is a learning theory which considers that all behaviors are learnt as a result of some external stimulus. According to this theory, a learner always responds to this external stimulus which is either in the form of reinforcement or punishment (Staddon, 2017). Both positive and Continue reading
from turtle import *
import random
if __name__ == ‘__main__’:
number_coins = int(input(‘Enter a number of coins: ‘)) Continue reading