In R language , I want to represent the joint probability density function (PDF) \ joint cumulative distribution function (CDF) by the combination of copula function and marginal probability function \ distribution function \ copula function \ distribution function \ Copula function. For example, there are two dimensions of data that follow the normal distribution, the mean is 3 and 4, the standard deviation is 1 and 1, and the Gaussian copula (parameter is 0.5) is selected as the copula function. Can someone teach me? Thank you so much! For example, here is the code to build PDFS and CDFS without using copula functions.Who can help me to represent Jpdf through the Copula function, JPDF looks like the following form,
mux=c(3,4)
sigmax=c(1,1)
x=mux
cdfx=c(pnorm(x[1],mux[1],sigmax[1]),pnorm(x[2],mux[2],sigmax[2]))
pdfx=c(dnorm(x[1],mux[1],sigmax[1]),dnorm(x[2],mux[2],sigmax[2]))
EDIT
Evaluation of the cdf and the pdf