Displaying 3 results from an estimated 3 matches for "sc_".
Did you mean:
sc
2010 Feb 03
2
How to change output 'csv' file
...rs
After executing the R code, where the last few lines of the code are something like given below.
## Part of my R code
n = 20
........
.........
final_output = data.frame(Numbers = numbers, ABC = data1, XYZ = data2, PQR = data3)
write.csv(data.frame(Scenario = paste("Sc_", 1:n, sep = ""), final_output'), 'result.csv', row.names = FALSE)
## End of code
When I open the 'result.csv' file, my output is like
Scenario Numbers ABC XYZ PQR
Sc_1 1 ...
2010 Feb 10
4
Readjusting the OUTPUT csv file
...t3.csv')$value3
# (Thus if 1st variable chosen is DEF, then name1 = DEF, value1 = 10. Had I chosen some otehr variable, then name1 and value1 will have different values).
Then I carry out my analysis and get the output as given below.
Scenario_and_range names values
Sc_1 (DEF LMN PQR) name1 10.04
Sc_1 (DEF LMN PQR) name2 8.21
Sc_1 (DEF LMN PQR) name3 7.23
Sc_2 (DEF LMN PQR) name1 9.96
Sc_2 (DEF LMN PQR) name2 8.47
Sc_2 (DEF LMN PQR) name3 ...
2012 Feb 10
21
Reducing the need to compile a custom kernel
Hi,
during some big discussions in the last monts on various lists, one of
the problems was that some people would like to use freebsd-update but
can't as they are using a custom kernel. With all the kernel modules
we provide, the need for a custom kernel should be small, but on the
other hand, we do not provide a small kernel-skeleton where you can
load just the modules you need.