So my problem is that after a specific paragraph Rmarkdown doesn't generating the rest of the code and I don't know why. Note that if I delete that paragraph the program will render untill the next text paragraph and then do the same thing. This is urgent, can someone help me?
Btw, the paragraph problem (in case it will help you) is the one after the title "Estimarea parametrilor"
mainfont: Times New Roman fontsize: 11pt header-includes: - \usepackage{titling} - \pretitle{\begin{flushleft}\huge\bfseries} - \posttitle{\end{flushleft}}
- \preauthor{\begin{flushleft}\Large} - \postauthor{\end{flushleft}}
- \predate{\begin{flushleft}\large}
- \postdate{\end{flushleft}}
Introducere
#install.packages("readxl")
library(readxl)
library(tidyverse)
library(car)
library(ellipse)
date_proiect=read_excel("~/video_games/vgsales.xlsx")
par(mfrow = c(2,2))
plot(date_proiect_curat$EU_Sales, date_proiect_curat$Global_Sales,
xlab = "Vanzari Europa",
ylab = "Volumul vanzarilor total",
col = "aquamarine",
pch = 16,
bty="n")
plot(date_proiect_curat$NA_Sales, date_proiect_curat$Global_Sales,
xlab = "Vanzari SUA",
ylab = "Volumul vanzarilor total",
col = "aquamarine",
pch = 16,
bty="n")
plot(date_proiect_curat$JP_Sales, date_proiect_curat$Global_Sales,
xlab = "Vanzari Japonia",
ylab = "Volumul vanzarilor total",
col = "aquamarine",
pch = 16,
bty="n")
plot(date_proiect_curat$Other_Sales, date_proiect_curat$Global_Sales,
xlab = "Vanzari in alte tari",
ylab = "Volumul vanzarilor total",
col = "aquamarine",
pch = 16,
bty="n")
Estimarea parametrilor
Considerăm modelul de regresie liniară simplă y=\beta_{0}+\beta_{1}x +\varepsilon (unde x venitul provenit din vanzarile in America de Nord iar y venitul provenit din vanzarile la nivel mondial, \varepsilon este repartizat normal de medie 0 și varianță sigma p\u atrat. Estimatorii parametrilor \beta_{0} \c si \beta_{1} ob\c tinu\c ti prin metoda celor mai mici pătrate sunt calcula\c ti ^in R
(THIS IS THE PARAGRAPH FROM WHICH THE OUTPUT IS BASICALLY NOTHING)
## pentru beta1
b1 = cov(date_proiect_curat$NA_Sales, date_proiect_curat$Global_Sales)/var(date_proiect_curat$NA_Sales)
cat("b1 = ", b1, "\n")
## pentru beta0
b0 = mean(date_proiect_curat$Global_Sales) - b1*mean(date_proiect_curat$NA_Sales)
cat("b0 = ", b0)
maybe the porblem is with the code after that...idk...