Here is a useful guide on how to work with this dataset using R. 1. Overview of the jj.txt Dataset
While commonly used for J&J data, a jj.txt file might also be: JJ.txt
Q1. The dataset jj.txt contains quarterly earnings | Chegg.com Here is a useful guide on how to
# 1. Load the data jj_data <- read.table("path/to/jj.txt", header=TRUE) # 2. Convert to time series object (starting Q1 1960, frequency 4) jj_ts <- ts(jj_data, start=c(1960, 1), frequency=4) # 3. Make a time plot plot(jj_ts, type="l", main="J&J Quarterly Earnings", ylab="Earnings (USD)", xlab="Year") Use code with caution. Copied to clipboard JJ.txt
# Take natural log and plot log_jj <- log(jj_ts) plot(log_jj, main="Log-transformed J&J Earnings", ylab="Log Earnings", xlab="Year") Use code with caution. Copied to clipboard 4. Alternative Uses of "jj.txt"
You can import the data and create a time plot to analyze the trend.