Tumgik
#mymeanings
purplecladmerchant · 11 days
Text
Diffraction
Erlin felt like a husk of a person. For a moment, it was fine. It was war, but he had the support of a party, he was the support of his party.
After a godamn month and who knows how much more.
I finished It, my Erlic-centric fic about the question that was always eating my brain: Who gave him powers during the final battle, if he didn't had the time to change his adoration?
And some of you on the naddcord probably already know what is my answer. Anyway.
17 notes · View notes
Text
Yamada's Zapakuto
I'm watching Bleach atm and I found some recognition in one of the scenes. it goes as follows:
He thought his master rejected him.
And in his dejection, he went and lived like a hermit in the underground waterway.
and then the realization follows, he starts to realize that his master never rejected him in the first place. and now coming to accept this, there is no more reason to uphold the choice he made to live underground and in solitude. I think for me what this means, that it is ok to turn another way. I'm usually extremely persistent with almost everything I do. having a outside influence that gives you the confirmation that all is not lost and it is because you interpreted something different then how the situation is in reality can make a world of difference in making yourself suffer for no good cause.
1 note · View note
jocelinerios · 3 months
Text
LIS 4370: Module #2 Assignment
In this assignment, I tested a function called myMean that should calculate the mean of number values. The code for the assignment can be seen as follows: 
Input: 
assignment2 <- c(16, 18, 14, 22, 27, 17, 19, 17, 17, 22, 20, 22)
myMean <- function(assignment2) { 
  return(sum(assignment2)/length(assignment2)) 
  }
myMean(assignment2)
myMean(c(1,2,3))
myMean(c(“one”, “two”, “three”))
Tumblr media
In testing the function- I found that it worked as intended, as mean is accurately calculated as long as the right vector type is passed through.
If one didn’t know better however, they may believe the function would only work as long as the assignment2 object is passed through it- however- as long as an int vector is passed to the function- its mean will be calculated. I reinforce by testing numbers in string form, to no avail.
The Github link to the raw code is:
intro-to-r2/Rios_HW2.R at main · JocieRios/intro-to-r2 (github.com)
0 notes
journalytics · 3 months
Text
Module # 2 Introduction to basic R functions and Data Structures
For the assignment, we were asked to run a specific function:
Tumblr media
The result comes out as 19.25. The assignment calls to explain why this function works. First, we assign the vector to assignment2. 
Then the function myMean contains the vector of numbers and calls for the function to return the value of sum(assignment2), which stores the sum of numbers in the vector assignment2, divided by length(assignment2), which stores the numerical length of the vector in assignment2.
Thus, it produces the result of 19.25
0 notes
statswithr · 4 months
Text
Module 2 Assignment
The variable "assignment2" concatenates a series of numbers. Those numbers are sent to a function called myMean. myMean contains the formula (sum(assignment2)/length(assignment2)), where "sum()" totals the values in assignment2 and where"length()" calculates the number of elements in the data set, to return the mean of the input variable.
The result is 18.66667.
0 notes
usfstatstudent · 8 months
Text
Module 2 Assignment
assignment2<- c(6,18,14,22,27,17,22,20,22) myMean <- function(assignment2) { return(sum(assignment2)/length(assignment2))
}
myMean(assignment2)
[1] 18.66667
What this function does is it takes in the data from the vector assignment 2 and it adds up the numbers to get the sum of the vector then it divides it by the length of the vector and returning the mean of the vector.
1 note · View note
codehunter · 2 years
Text
ValueError: setting an array element with a sequence
This Python code:
import numpy as pdef firstfunction(): UnFilteredDuringExSummaryOfMeansArray = [] MeanOutputHeader=['TestID','ConditionName','FilterType','RRMean','HRMean', 'dZdtMaxVoltageMean','BZMean','ZXMean','LVETMean','Z0Mean', 'StrokeVolumeMean','CardiacOutputMean','VelocityIndexMean'] dataMatrix = BeatByBeatMatrixOfMatrices[column] roughTrimmedMatrix = p.array(dataMatrix[1:,1:17]) trimmedMatrix = p.array(roughTrimmedMatrix,dtype=p.float64) #ERROR THROWN HERE myMeans = p.mean(trimmedMatrix,axis=0,dtype=p.float64) conditionMeansArray = [TestID,testCondition,'UnfilteredBefore',myMeans[3], myMeans[4], myMeans[6], myMeans[9], myMeans[10], myMeans[11], myMeans[12], myMeans[13], myMeans[14], myMeans[15]] UnFilteredDuringExSummaryOfMeansArray.append(conditionMeansArray) secondfunction(UnFilteredDuringExSummaryOfMeansArray) returndef secondfunction(UnFilteredDuringExSummaryOfMeansArray): RRDuringArray = p.array(UnFilteredDuringExSummaryOfMeansArray,dtype=p.float64)[1:,3] returnfirstfunction()
Throws this error message:
File "mypath\mypythonscript.py", line 3484, in secondfunctionRRDuringArray = p.array(UnFilteredDuringExSummaryOfMeansArray,dtype=p.float64)[1:,3]ValueError: setting an array element with a sequence.
Can anyone show me what to do to fix the problem in the broken code above so that it stops throwing an error message?
EDIT:I did a print command to get the contents of the matrix, and this is what it printed out:
UnFilteredDuringExSummaryOfMeansArray is:
[['TestID', 'ConditionName', 'FilterType', 'RRMean', 'HRMean', 'dZdtMaxVoltageMean', 'BZMean', 'ZXMean', 'LVETMean', 'Z0Mean', 'StrokeVolumeMean', 'CardiacOutputMean', 'VelocityIndexMean'],[u'HF101710', 'PreEx10SecondsBEFORE', 'UnfilteredBefore', 0.90670000000000006, 66.257731979420001, 1.8305673000000002, 0.11750000000000001, 0.15120546389880002, 0.26870546389879996, 27.628261216480002, 86.944190346160013, 5.767261352345999, 0.066259118585869997],[u'HF101710', '25W10SecondsBEFORE', 'UnfilteredBefore', 0.68478571428571422, 87.727887206978565, 2.2965444125714285, 0.099642857142857144, 0.14952476549885715, 0.24916762264164286, 27.010483303721429, 103.5237336525, 9.0682762747642869, 0.085022572648242867],[u'HF101710', '50W10SecondsBEFORE', 'UnfilteredBefore', 0.54188235294117659, 110.74841107829413, 2.6719262705882354, 0.077705882352917643, 0.15051306356552943, 0.2282189459185294, 26.768787504858825, 111.22827075238826, 12.329456404418824, 0.099814258468417641],[u'HF101710', '75W10SecondsBEFORE', 'UnfilteredBefore', 0.4561904761904762, 131.52996981880955, 3.1818159523809522, 0.074714285714290493, 0.13459344175047619, 0.20930772746485715, 26.391156337028569, 123.27387909873812, 16.214243779323812, 0.1205685359981619]]
Looks like a 5 row by 13 column matrix to me, though the number of rows is variable when different data are run through the script. With this same data that I am adding in this.
EDIT 2: However, the script is throwing an error. So I do not think that your idea explains the problem that is happening here. Thank you, though. Any other ideas?
EDIT 3:
FYI, if I replace this problem line of code:
RRDuringArray = p.array(UnFilteredDuringExSummaryOfMeansArray,dtype=p.float64)[1:,3]
with this instead:
RRDuringArray = p.array(UnFilteredDuringExSummaryOfMeansArray)[1:,3]
Then that section of the script works fine without throwing an error, but then this line of code further down the line:
p.ylim(.5*RRDuringArray.min(),1.5*RRDuringArray.max())
Throws this error:
File "mypath\mypythonscript.py", line 3631, in CreateSummaryGraphics p.ylim(.5*RRDuringArray.min(),1.5*RRDuringArray.max())TypeError: cannot perform reduce with flexible type
So you can see that I need to specify the data type in order to be able to use ylim in matplotlib, but yet specifying the data type is throwing the error message that initiated this post.
https://codehunter.cc/a/python/valueerror-setting-an-array-element-with-a-sequence
0 notes
kharinasclassblog · 2 years
Text
module 2, assignment 2: getting started with R in stats
In this week's assignment, we were asked to execute and understand the function myMean() (which is very case sensitive don't forget that!)
Calling the myMean() function passes through our list of numbers through 3 different types of functions to calculate the mean. The sum() function adds the value of any integer in the vector, the length() function returns the number of integers in the list while the return() function allows for any new function to return the answer/sum/total or quotient.
Tumblr media
All of this to find out that the sum for our 9 values is 18.66667
1 note · View note
partibha-blog1 · 5 years
Photo
Tumblr media
#partibhapoetries #poems #randompoetry #randomfeelings #love #coffee #breath #touch #selflove #mywords #mymeanings #deams #instapoetry https://www.instagram.com/p/B21l1Hpl5SI/?igshid=1mk9sukhdr7ur
0 notes
chemoon13 · 3 years
Photo
Tumblr media
My favourite humans ever #merrychristmas #family #love #tribesters #moonarangs #happyplace #christmasday #mymeaning #lookhowtheyvegrown #wateredthemgood https://www.instagram.com/p/CJOov8jH-oy_28n1y4VaRHgDmZUEPJJGzVqwFc0/?igshid=rx3im8lfij5c
0 notes
unicornswag00 · 6 years
Text
we lose our color
i dont understand the school system, we start at a young age to learn fast. but still we are pretty young. and then we spend the first most important part of our lives to sit i a classrom and look at a white wall for almost half the day, we go home and do homework. so we dont have time do be ourself. we are losing our color. we end up with depression and anxiety. and after we end up with that the world decides that we are gonna choose our whole future. Which school should you go to, what are you going to do with your life? i dont know, because i spent my life in a white room with a boring book, i forgot the next day.
choosing who were supposed to be in our future, when we dont even know who we are right now, the school system is bad. i think so. when we were kids we said we wanetd to be a president and such. and now we dont know anymore, we dont know anything. we are confused. 
i dont how other way it should be, but this way is horrible. the most brutal time of my life, and im supposed to choose my future right now??. we learn about the past, and they expect us to be ready for the future. we are not. we have lost out colors.
8 notes · View notes
unity888-blog · 6 years
Photo
Tumblr media
Have a vision no matter what you go through, hold on to it 🌺 #grateful #lifeperpose #mymeaning #setgaols #gaol #makeithappen #trusttheprocess #lowofsuccess #lowofattraction #lowofvibration #vibes #business #businesscards #iam #iamamillionaire #iamworthit #ideserveit #richvibes #love #unity #keepdreaming #dreams #dreamchasers #blessed
3 notes · View notes
jocelinerios · 1 year
Text
LIS4370: Module #2 Assignment
For this assignment- I was responsible for evaluating a function myMean. The code for the assignment can be seen as follows: 
Input: 
assignment2 <- c(16, 18, 14, 22, 27, 17, 19, 17, 17, 22, 20, 22)
myMean <- function(assignment2) { 
  return(sum(assignment2)/length(assignment2)) 
  }
myMean(assignment2)
myMean(c(1,2,3))
myMean(c("one", "two", "three"))
Output:
Tumblr media
In testing the function- I found that it worked as intended, as mean is accurately calculated as long as the right vector type is passed through. If one didn’t no better, they may believe the function would only work as long as the assignment2 object is passed through it- however- as long as an int vector is passed to the function- its mean will be calculated.
0 notes
journalytics · 1 year
Text
The Mean in R
For this week's assignment in class, we had to evaluate a function called myMean in R. The goal is to use a data set (assignment 2) and use the function that finds the mean of that set.
First, I input the given data set into R:
assignment2 <- c(6,18,14,22,27,17,22,20,22)
Then, I create the function that evaluates the sum od the data set and divides it by the number of integers within.
myMean <- function(assignment2 {return(sum(assignment2)/length(assignment2))}
And finally, I apply the function to the datasat to calculate the mean:
myMean(assignment2)
Result:
[1] 18.66667
It was a simple task overall, as both the dataset and function were given by the professor. The main purpose of the assignment was, I believe, to get the students familiar with R's structure and how we'll be doing mathematics within it.
0 notes
og-bongloaded · 4 years
Photo
Tumblr media
#TBT #ThrowBackThursday my beautiful daughter oh, and my fresh out the cooker son. #MaryJane #BlazeRiley #MyMeaning #MyPurpose #Seeds #Future https://www.instagram.com/p/B-gPKnLHMXNqv9WZOeQLS9JvOyzTfwQc6bKaIw0/?igshid=3viqnvir64ii
0 notes
teamfroglogic · 6 years
Photo
Tumblr media
Daily Dose of Froglogic - 8 Nov 17 My anchored heart floats freely across the blazen fires of the burning horizon. The endless warmth of their presence keeps me from the shivers of unknown distances and the carnival life. I️ yearn to trap their innocence within the millions of shells bathing in the rolling seashore. As my soul takes flight in search of the true infernos I️ desperately try and remember their small footprints leaving behind their purity within the changing tides. I️ hear the engines of purpose roar and I️ quietly send prayers that the armor of God’s brilliant light coats their soul and keeps them warm as the distance between us grows. The unicorn shells and sharks teeth are so hard to find. I️ must never stop searching for them. OOOOUUUUTTTT #Froglogic #PoetWarrior #TheJerichoMile #Angelsamongus #TheBearandtheBrusier #MyMeaning
3 notes · View notes