Skip to content

Instantly share code, notes, and snippets.

View rghosh8's full-sized avatar
💭
I may be slow to respond.

Rajat Ghosh rghosh8

💭
I may be slow to respond.
View GitHub Profile
@rghosh8
rghosh8 / portfolio.md
Last active January 28, 2021 20:19
portfolio

Representative Data Science Projects

  • PhD research on intelligent controls of data centers which demonstrates my expertise in experimental design, hypothesis testing, enterprise IT, machine learning, and data visualization: Github

  • AdeptDC allows me to work on anomaly detection, time series relevance ranking, and similarity pair ranking: Doc

  • Stock market analysis project which demostrates my skills in time series, A/B testing, and statistical inference: Github

  • Twitter sentiment analysis which demonstrates my skils in NLP, machine learning, and deep learning: Github

@rghosh8
rghosh8 / Args and KWArgs.ipynb
Created August 30, 2020 05:05 — forked from ljbelenky/Args and KWArgs.ipynb
*Args and **KWArgs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rghosh8
rghosh8 / stat.js
Created March 9, 2019 02:48
All relevant statistical parameters
let inputData = [1, 2, 3, 9, 11, 12, 15, 17, 18, 21, 23, 24, 27];
//
const Len = (data) => data.length
console.log(Len(inputData))
// sum
const Sum = (data) => data.reduce((acc, curr) => acc + curr);
console.log(Sum(inputData))
//Write a function identity which expects 1 argument and simply returns that input value.
//Calling your function should result in:
//identity("hello world"); //"hello world"
//identity(500); //500
/// Exercise 1