Modem merupakan perangkat internet networking sedangkan router merupakan perangkat networking. Modem hanya menerima dan mengirimkan data melalui sambungan telepon sedangkan router berfungsi untuk mengarahkan data menuju jaringan.
statistics Tutorial
Thursday, October 27, 2022
Wednesday, August 31, 2022
Tutorial Instalasi Debian
Bagaimana langkah-langkah cara install Debian? Sebelum membahas tentang hal te rsebut, anda harus tahu terlebih dahulu apa itu Debian. Bagi anda yang selalu bersentuhan dengan dunia server tentu tidak asing lagi dengan nama yang satu ini. Debian adalah salah satu sistem operasi Linuc atau GNU yang bersifat universal atau umum yang bisa anda gunakan untuk kebutuhan apa saja sesuai dengan keinginan anda. Debian pertama kali dikembangkan pada sekitar 1993.
Sistem operasi Debian merupakan sistem operasi yang bersifat open source. Artinya, anda tidak perlu lagi memerlukan serial number karena memang anda tidak perlu mendownload atau bahkan membeli serial numbernya. Tentunya kelebihan inilah yang membuat banyak orang mulai beralih menggunakan Debian. Selain itu, tampilannya juga cukup menarik dan tidak membosankan.
Belum lagi dengan kelebihan lain yang dimiliki oleh Debian yang terkenal memiliki sistem keamanan yang cukup tinggi. Selain itu, anda juga tidak memerlukan antivirus karena memang pada dasarnya sistem operasi Linux tidak harus menggunakan antivirus karena virus tidak akan bisa masuk.
Monday, January 20, 2020
Ant Colony - Jalur Terdekat Distribusi Gas Elpiji
Wednesday, January 18, 2017
Survival analysis: topics covered
Survival Analysis
Survival analysis is applied when the data set includes subjects that are tracked until an event happens (failure) or we lose them from the sample. We are interested in how long they stay in the sample (survival). We are also interested in their risk of failure (hazard rates). Examples include loan performance and default, firm survival and exit, and time to retirement.
Survival analysis: topics covered
|
Survival analysis AKA failure time analysis Classically, the analysis of time to death. But can be used anywhere you want to know what factors affect the time for an event to occur: Germination timing Arrival of a migrant or parasite Dispersal of seeds or offspring Failure time in mechanical systems Response to stimulus Censoring: dealing with missing data Right censoring: Where the date of death is unknown but is after some known date e.g. Date of death is after the end of the study Subject is removed from the study (patient withdraws, animal escapes, plant gets eaten etc.) Survival analysis can account for this kind of censoring Censoring: dealing with missing data Left censoring: Occurs when a subject's survival time is incomplete on the left side of the follow-up period e.g. Following up a patient after being tested for an infection, we don't know the exact time of exposure Less common Survival analysis can account for this (see ref 4) ASSUMPTION: censoring must be independent of the event being looked at! The Survival Function (Survival curve)
Survival analysis AKA failure time analysis
Classically, the analysis of time to death.
- Germination timing
- Arrival of a migrant or parasite
- Dispersal of seeds or offspring
- Failure time in mechanical systems
- Response to stimulus
Censoring: dealing with missing data
Right censoring:
- Date of death is after the end of the study
- Subject is removed from the study (patient withdraws, animal escapes, plant gets eaten etc.)
Censoring: dealing with missing data
Left censoring:
- e.g. Following up a patient after being tested for an infection, we don't know the exact time of exposure
- Less common
- Survival analysis can account for this (see ref 4)
ASSUMPTION: censoring must be independent of the event being looked at!
The Survival Function (Survival curve)
\[ S(t)=Pr(T>t) \]
- The underlying Hazard function(How the risk of death per unit time changes over time at baseline covariates)
- The effect parameters (How the hazard varies in response to the covariates)
The Cox Proportional-Hazards Model
- The baseline hazard function is unspecified
- The effects of the covariates are multiplicative
- Doesn't make arbitrary assumptions about the shape/form of the baseline hazard function
The Proportional Hazards Assumption
- Covariates multiply the hazard by some constant
- e.g. a drug may halve a subjects risk of death at any time \( t \)
- The effect is the same at any time point
Violating the PH assumption can seriously invalidate your model!
Survival analysis in R
survival
package.Surv
object taking in- start time (after study start)
- stop time (after study start)
- whether or not an event occurred
coxph
functionSurv()
: Define a survival objectcoxph()
: Run a cox PH regressionsurvfit()
: Fit a survival curve to a model or formula