I am a new R user. I have data in the following xls file
nKPI December-2012 July-2013 January-2014 July-2014 January-2015 June-2015 January-2016 July-2016
NKPI-03001 0.13 0.25 0.23 0.09 0.07 0.08 0.19 0.14
NKPI-03002 0.23 0.22 0.21 0.16 0.20 0.22 0.32 0.37
NKPI-03003 0.38 0.41 0.44 0.36 0.32 0.28 0.36 0.35
NKPI-03004 0.47 0.37 0.49 0.38 0.41 0.43 0.51 0.54
NKPI-03005 0.24 0.41 0.55 0.43 0.41 0.42 0.54 0.52
NKPI-03006 0.31 0.38 0.39 0.36 0.34 0.40 0.59 0.55
NKPI-03008 0.20 0.21 0.17 0.09 0.10 0.13 0.25 0.29
There are 704 rows of nkpi entries to process.
I need to forecast a value for july 2017 and jan 2018 using this data and create a plot for each kpi.
I can read the data into a data frame and drop rows with missing data as follows:
kpi_df <- read.xls("ochre_kpi.xls", header=TRUE)
# drop rows with no or missing data
kpi_df <- na.omit(kpi_df)
At this stage I get lost. I thank in advance any one who can offer guidance and assistance