20
May
Python Task on A to J one Prototype
import pandas as pd import numpy as np import pandas as pd import numpy as np import random alp=['a','b','c',.....
13
May
R Studio on Quantitative Methods for Risk Analysis
## load the data #question1 datao<-read.csv("C:/Users/Ashwini Khandelwal/Downloads/move_au.csv") View(datao) library(factoextra) dat.....
05
May
Lessons Learned, and Vehicle Inventory Program using Python
This program is used to manage the detail of the vehicle, you can add, remove and update the data of the vehicle. create a class name Autom.....
05
May
R Studio Task
#1 library(datasets) data(women) str(women) lm_1<-lm(weight ~ height, data=women) summary(lm_1) sum((women$height - mean(wome.....
29
Apr
R Programming Task on Predicting Prices of Used Cars
--- title: "R Assignment" author: "***" date: "07/06/2020" output: html_document: df_print: paged pdf_document: default .....
29
Apr
R Programming Task on Multiple Linear Regression And Analysis of Convariance
### PART A ### # Q1 pairs(shellfish) # Q2 # From the plot it is very clear that their is strong relationship between predict.....
14
Apr
MATLAB Task on Process Data
clc clear all close all % script : % -------- for i=1:4 % for input file 1 : TDFstage12 if i==1 n=12; end % for input file.....
14
Apr
R Studio Task on Time Series
##Reading the data file library("readxl") library(forecast) library(fma) library(datasets) library(ggplot2) mydata=read_excel("C:/.....
06
Apr
Python task on Huffman Tree
from collections import Counter from heapq import heappush, heappop from functools import total_ordering @total_ordering class TreeN.....