This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
###Variable Name Checking ########## | |
pop = read.csv("H:\\file1.csv", head=T, as.is=T) | |
sam = read.csv("H:\\file2_vars_10.csv", head=T, as.is=T) | |
p = pop$NAME[!(pop$NAME %in% sam$NAME)] | |
s = sam$NAME[!(sam$NAME %in% pop$NAME)] | |
res = data.frame() | |
for (i in 1:length(p)) { | |
for (j in 1:length(s)) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set.seed(1) | |
performance = rnorm(10,10,3) | |
effort = rnorm(10,10,3) | |
model = LETTERS[seq(1,10)] | |
Db = data.frame(Performance = performance, Effort = effort, Model = model) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1> Upload Your Data (CSV Only) </h1> | |
<form role="form" method="post" name="formData"> | |
<input type="file" onchange="angular.element(this).scope().setFile(this)" ng-model="upFileDisplayName"/> | |
<input type="text" ng-model="upFileTitle" placeholder="Type The Title"/> | |
<textarea ng-model="upFileDesc" placeholder="Type Description"> </textarea> | |
<button ng-click='uploadAll()' type="submit" class="btn btn-default">Submit</button> | |
</form> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
asdf |